Added Markdown support
This commit is contained in:
parent
e825b5996c
commit
50778e34dc
|
|
@ -5,7 +5,7 @@ from recommonmark.transform import AutoStructify
|
|||
#
|
||||
# For the full list of built-in configuration values, see the documentation:
|
||||
# https://www.sphinx-doc.org/en/master/usage/configuration.html
|
||||
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..')))
|
||||
|
||||
# -- Project information -----------------------------------------------------
|
||||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
|
||||
|
||||
|
|
@ -21,11 +21,14 @@ extensions = ['sphinx.ext.autodoc',
|
|||
'sphinx.ext.viewcode',
|
||||
'sphinx.ext.todo',
|
||||
'recommonmark',
|
||||
'sphinx_markdown_builder',
|
||||
'sphinxcontrib.mermaid'
|
||||
]
|
||||
|
||||
templates_path = ['_templates']
|
||||
exclude_patterns = []
|
||||
exclude_patterns = [
|
||||
'build/*'
|
||||
]
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue