We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
extensions
docs/conf.py
1 parent eedf98c commit 1ed35a3Copy full SHA for 1ed35a3
docs/source/conf.py
@@ -14,12 +14,22 @@
14
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
15
16
extensions = [
17
- 'sphinx.ext.duration',
18
- 'sphinx.ext.doctest',
19
- 'sphinx.ext.autodoc',
20
- 'sphinx.ext.autosummary',
+ "sphinx.ext.autosummary",
+ "sphinx.ext.autodoc",
+ "sphinx.ext.mathjax",
+ "sphinx.ext.viewcode",
21
+ "sphinx.ext.napoleon",
22
+ "sphinx.ext.intersphinx",
23
+ "sphinx.ext.extlinks",
24
+ "nbsphinx",
25
+ "sphinx_copybutton",
26
]
27
28
+autosummary_generate = True
29
+napoleon_google_docstring = False
30
+napoleon_use_param = False
31
+napoleon_use_ivar = True
32
+
33
templates_path = ['_templates']
34
exclude_patterns = []
35
0 commit comments