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 cad63263d2
commit aa26546088

View file

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