Add sphinx-markdown-builder for generating release notes

Without this, Sphinx refuses to use the "-b markdown" builder (see next commit).
This commit is contained in:
Johannes Altmanninger
2024-04-17 13:32:08 +02:00
parent ebcb2eac68
commit 0c7e7e3fd9

View File

@@ -14,6 +14,15 @@ from sphinx.highlighting import lexers
from sphinx.errors import SphinxWarning
from docutils import nodes
try:
import sphinx_markdown_builder
extensions = [
"sphinx_markdown_builder",
]
except ImportError:
pass
# -- Helper functions --------------------------------------------------------