matplotlib.sphinxext.figmpl_directive
#
Add a figure-mpl
directive that is a responsive version of figure
.
This implementation is very similar to .. figure::
, except it also allows a srcset=
argument to be passed to the image tag, hence allowing responsive resolution images.
There is no particular reason this could not be used standalone, but is meant to be used with matplotlib.sphinxext.plot_directive.
Note that the directory organization is a bit different than .. figure::
. See the FigureMpl documentation below.
Implements a directive to allow an optional hidpi image.
Meant to be used with the plot_srcset configuration option in conf.py, and gets set in the TEMPLATE of plot_directive.py
e.g.:
.. figure-mpl:: plot_directive/some_plots-1.png :alt: bar :srcset: plot_directive/some_plots-1.png, plot_directive/some_plots-1.2x.png 2.00x :class: plot-directive
The resulting html (at some_plots.html
) is:
<img src="sphx_glr_bar_001_hidpi.png" srcset="_images/some_plot-1.png, _images/some_plots-1.2x.png 2.00x", alt="bar" class="plot_directive" />
Note that the handling of subdirectories is different than that used by the sphinx figure directive:
.. figure-mpl:: plot_directive/nestedpage/index-1.png :alt: bar :srcset: plot_directive/nestedpage/index-1.png plot_directive/nestedpage/index-1.2x.png 2.00x :class: plot_directive
The resulting html (at nestedpage/index.html
):
<img src="../_images/nestedpage-index-1.png" srcset="../_images/nestedpage-index-1.png, ../_images/_images/nestedpage-index-1.2x.png 2.00x", alt="bar" class="sphx-glr-single-img" />
where the subdirectory is included in the image name for uniqueness.
May the final argument contain whitespace?
May the directive have content?
Mapping of option names to validator functions.
Number of optional arguments after the required arguments.
Number of required directive arguments.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4