Skip to content
Snippets Groups Projects
Commit 8807da4b authored by Nils Brüggemann's avatar Nils Brüggemann
Browse files

doc: Allow for markdown files in documentation.

parent 01b8b51f
No related branches found
No related tags found
No related merge requests found
Pipeline #100196 passed
...@@ -39,6 +39,7 @@ extensions = [ ...@@ -39,6 +39,7 @@ extensions = [
'sphinx_copybutton', 'sphinx_copybutton',
'sphinx.ext.autosummary', 'sphinx.ext.autosummary',
'sphinx.ext.napoleon', 'sphinx.ext.napoleon',
'myst_parser',
] ]
# Add any paths that contain templates here, relative to this directory. # Add any paths that contain templates here, relative to this directory.
...@@ -48,7 +49,10 @@ templates_path = ['_templates'] ...@@ -48,7 +49,10 @@ templates_path = ['_templates']
# You can specify multiple suffix as a list of string: # You can specify multiple suffix as a list of string:
# #
# source_suffix = ['.rst', '.md'] # source_suffix = ['.rst', '.md']
source_suffix = '.rst' source_suffix = {
'.rst': 'restructuredtext',
'.md': 'markdown',
}
# The master toctree document. # The master toctree document.
master_doc = 'index' master_doc = 'index'
......
...@@ -4,3 +4,4 @@ nbsphinx-link ...@@ -4,3 +4,4 @@ nbsphinx-link
sphinx_copybutton sphinx_copybutton
pydata_sphinx_theme pydata_sphinx_theme
#docutils=0.20 #docutils=0.20
myst-parser
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment