1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
Description: Exclude sphinx_markdown_builder extension
Author: Andreas Tille <tille@debian.org>
Last-Update: Tue, 16 Jan 2024 11:27:32 +0100
--- a/docs/apidoc/conf.py
+++ b/docs/apidoc/conf.py
@@ -29,7 +29,7 @@ author = __author__
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
# Napoleon is necessary to parse Google style docstrings. Markdown builder allows the generation of markdown output.
-# extensions = ["sphinx.ext.autodoc", "sphinx.ext.napoleon", "myst_parser", "sphinx_markdown_builder"]
+# extensions = ["sphinx.ext.autodoc", "sphinx.ext.napoleon", "myst_parser"]
# Add any paths that contain templates here, relative to this directory.
# -- General configuration -----------------------------------------------------
@@ -44,7 +44,6 @@ extensions = [
"sphinx.ext.napoleon",
"sphinx.ext.linkcode",
"sphinx.ext.mathjax",
- "sphinx_markdown_builder",
]
exclude_patterns = ["../**/tests*"]
exclude_dirnames = ["../**/tests*"]
|