Skip to content

Commit

Permalink
add myst_parser to render md - files
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Muenker <mail@chipmuenk.de>
  • Loading branch information
chipmuenk committed Apr 7, 2024
1 parent 7402924 commit 99805a1
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -49,6 +49,7 @@
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
'myst_parser',
'sphinx.ext.autodoc',
'sphinx.ext.intersphinx',
'sphinx.ext.mathjax',
Expand Down Expand Up @@ -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', '.md']
# source_suffix = '.rst'

# The master toctree document.
master_doc = 'index'
Expand Down

0 comments on commit 99805a1

Please sign in to comment.