doc_infra/source/conf.py

43 lines
1.3 KiB
Python
Raw Normal View History

2025-01-28 22:14:34 +01:00
# Configuration file for the Sphinx documentation builder.
#
# For the full list of built-in configuration values, see the documentation:
# https://www.sphinx-doc.org/en/master/usage/configuration.html
# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
project = 'Doc Infra'
copyright = '2025, Michaël Ricart'
author = 'Michaël Ricart'
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
extensions = []
templates_path = ['_templates']
exclude_patterns = []
language = 'fr'
# -- Options for HTML output -------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
2025-02-17 10:38:17 +01:00
html_theme = "sphinx_rtd_theme"
# These folders are copied to the documentation's HTML output
2025-01-28 22:14:34 +01:00
html_static_path = ['_static']
2025-02-17 10:38:17 +01:00
# These paths are either relative to html_static_path
# or fully qualified paths (eg. https://...)
2025-02-17 10:40:14 +01:00
#html_style = 'css/custom.css'
html_css_files = [
'css/custom.css',
]
2025-02-17 10:47:56 +01:00
html_theme_options = {
2025-02-17 10:52:34 +01:00
'collapse_navigation': True,
2025-02-17 10:50:25 +01:00
'sticky_navigation': True,
'navigation_depth': -1,
2025-02-17 10:47:56 +01:00
'includehidden': True,
'titles_only': False
}