Added Markdown support

This commit is contained in:
Gustavo Henrique Santos Souza de Miranda 2025-05-20 20:22:48 -03:00
parent e825b5996c
commit 50778e34dc
1 changed files with 5 additions and 2 deletions

View File

@ -5,7 +5,7 @@ from recommonmark.transform import AutoStructify
# #
# For the full list of built-in configuration values, see the documentation: # For the full list of built-in configuration values, see the documentation:
# https://www.sphinx-doc.org/en/master/usage/configuration.html # 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 ----------------------------------------------------- # -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#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.viewcode',
'sphinx.ext.todo', 'sphinx.ext.todo',
'recommonmark', 'recommonmark',
'sphinx_markdown_builder',
'sphinxcontrib.mermaid' 'sphinxcontrib.mermaid'
] ]
templates_path = ['_templates'] templates_path = ['_templates']
exclude_patterns = [] exclude_patterns = [
'build/*'
]