We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d59035 commit bd8e066Copy full SHA for bd8e066
docs/conf.py
@@ -43,6 +43,7 @@
43
"sphinx-prompt", # for prompt
44
"notfound.extension", # for 404 page
45
"myst_parser", # for markdown
46
+ "sphinx.ext.intersphinx", # for intersphinx
47
]
48
49
templates_path = ["_templates"]
@@ -137,6 +138,13 @@ def setup(app):
137
138
# napoleon
139
napoleon_numpy_docstring = True
140
141
+# intersphinx
142
+intersphinx_mapping = {
143
+ "python": ("https://docs.python.org/3", None),
144
+ "numpy": ("https://numpy.org/doc/stable/", None),
145
+ "plotly": ("https://plotly.com/python-api-reference/", None),
146
+}
147
+
148
# todo-section
149
todo_include_todos = False
150
0 commit comments