File tree 3 files changed +10
-4
lines changed
3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 32
32
"sphinx_gallery.gen_gallery" ,
33
33
"sphinx_automodapi.automodapi" ,
34
34
"sphinx_automodapi.smart_resolver" ,
35
+ "sphinx.ext.intersphinx" ,
35
36
]
36
37
37
38
sphinx_gallery_conf = {
42
43
43
44
numpydoc_show_class_members = False
44
45
46
+ intersphinx_mapping = {
47
+ "napari" : ("https://napari.org/" , None ),
48
+ "matplotlib" : ("https://matplotlib.org/" , None ),
49
+ }
50
+
45
51
# Add any paths that contain templates here, relative to this directory.
46
52
templates_path = ["_templates" ]
47
53
Original file line number Diff line number Diff line change @@ -10,13 +10,13 @@ class NapariMPLWidget(QWidget):
10
10
"""
11
11
Attributes
12
12
----------
13
- viewer : napari.viewer. Viewer
13
+ viewer : ` napari.Viewer`
14
14
Main napari viewer.
15
- figure : matplotlib.figure.Figure
15
+ figure : ` matplotlib.figure.Figure`
16
16
Matplotlib figure.
17
17
canvas : matplotlib.backends.backend_qt5agg.FigureCanvas
18
18
Matplotlib canvas.
19
- axes : matplotlib.axes.Axes
19
+ axes : ` matplotlib.axes.Axes`
20
20
Matplotlib axes.
21
21
"""
22
22
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ class HistogramWidget(NapariMPLWidget):
12
12
13
13
Attributes
14
14
----------
15
- layer : napari.layers.Layer
15
+ layer : ` napari.layers.Layer`
16
16
Current layer being histogrammed.
17
17
"""
18
18
You can’t perform that action at this time.
0 commit comments