Skip to content

Commit fa350cd

Browse files
committed
Enhance Sphinx configuration by adding missing extensions and setting static path
1 parent ce265af commit fa350cd

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

docs/conf.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,16 @@
1919
extensions = ['nbsphinx',
2020
'nbsphinx_link',
2121
'sphinx.ext.autodoc',
22+
'sphinx.ext.intersphinx',
23+
'sphinx.ext.todo',
24+
'sphinx.ext.coverage',
25+
'sphinx.ext.inheritance_diagram',
26+
'sphinx.ext.viewcode',
2227
'sphinx.ext.napoleon',
28+
'sphinx.ext.doctest',
29+
'sphinx.ext.mathjax',
2330
'sphinx_automodapi.automodapi',
31+
'sphinx_automodapi.smart_resolver',
2432
'sphinx_copybutton',
2533
]
2634

@@ -33,4 +41,4 @@
3341
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
3442

3543
html_theme = 'sphinx_rtd_theme'
36-
html_static_path = []
44+
html_static_path = ['_static']

0 commit comments

Comments
 (0)