Update documentation
This commit is contained in:
22
docs/conf.py
22
docs/conf.py
@@ -14,15 +14,33 @@ release = '1.0.0-rc.131'
|
||||
# -- General configuration ---------------------------------------------------
|
||||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
|
||||
|
||||
extensions = ['myst_parser']
|
||||
extensions = [
|
||||
'myst_parser',
|
||||
'sphinx.ext.mathjax',
|
||||
]
|
||||
|
||||
templates_path = ['_templates']
|
||||
exclude_patterns = []
|
||||
myst_enable_extensions = ['linkify', 'smartquotes']
|
||||
|
||||
myst_enable_extensions = [
|
||||
'linkify',
|
||||
'smartquotes',
|
||||
'dollarmath',
|
||||
'amsmath',
|
||||
]
|
||||
|
||||
myst_heading_anchor = 3
|
||||
|
||||
# Render LaTeX-style math nicely in HTML and support AMS-style equation numbering.
|
||||
mathjax3_config = {
|
||||
"tex": {
|
||||
"tags": "ams",
|
||||
"inlineMath": [['\\(', '\\)'], ['$', '$']],
|
||||
"displayMath": [['\\[', '\\]'], ['$$', '$$']],
|
||||
"processEscapes": True,
|
||||
}
|
||||
}
|
||||
|
||||
# -- Options for HTML output -------------------------------------------------
|
||||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
|
||||
|
||||
|
||||
Reference in New Issue
Block a user