From 11ed92159e18309ca94046d79a0c5658cbfa8dd7 Mon Sep 17 00:00:00 2001 From: Christian Muenker Date: Sun, 7 Apr 2024 16:11:35 +0200 Subject: [PATCH] Try to fix failing .md rendering Signed-off-by: Christian Muenker --- docs/source/conf.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index e763202e7..aeaf43ef7 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -24,7 +24,7 @@ # -- Project information ----------------------------------------------------- project = 'pyfda' -copyright = '2023, Christian Muenker' +copyright = '2024, Christian Muenker' author = 'Christian Muenker' # version_nr contains ... well ... the version in the form __version__ = '0.1b10' @@ -56,6 +56,7 @@ 'sphinx.ext.viewcode', 'sphinx.ext.napoleon', 'sphinx.ext.autosummary', + 'sphinx.ext.myst_parser' ] # see http://www.sphinx-doc.org/en/master/usage/extensions/napoleon.html # https://numpydoc.readthedocs.io/en/latest/format.html#docstring-standard @@ -78,8 +79,8 @@ # The suffix(es) of source filenames. # You can specify multiple suffix as a list of string: # -# source_suffix = ['.rst', '.md'] -source_suffix = '.rst' +# source_suffix = ['.rst'] +source_suffix = ['.rst', '.md'] # The master toctree document. master_doc = 'index'