mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-04-28 09:22:38 +02:00
Update sphinx to work with the new format. https://myst-parser.readthedocs.io/en/latest/sphinx/use.html#automatically-create-targets-for-section-headers was a valuable resource along the way. Fixes #902.
17 lines
389 B
Python
17 lines
389 B
Python
templates_path = ["_templates"]
|
|
source_suffix = ".rst"
|
|
master_doc = "index"
|
|
|
|
project = "I hate money"
|
|
copyright = "2011-2021, The 'I hate money' team"
|
|
|
|
version = "5.0"
|
|
release = "5.0"
|
|
exclude_patterns = ["_build"]
|
|
pygments_style = "sphinx"
|
|
extensions = ["myst_parser", "sphinx.ext.autosectionlabel"]
|
|
|
|
myst_enable_extensions = [
|
|
"colon_fence",
|
|
]
|
|
autosectionlabel_prefix_document = True
|