sphinx_gallery.directives#

自定义 Sphinx 指令。

函数#

sphinx_gallery.directives.depart_imgsg_html(self, node)[source]#

HTML 离开节点访问器函数。

#

class sphinx_gallery.directives.ImageSg(name, arguments, options, content, lineno, content_offset, block_text, state, state_machine)[source]#

实现一个指令,允许使用可选的 hidpi 图片。

旨在与 image_srcset 配置选项一起使用。

例如:

.. image-sg:: /plot_types/basic/images/sphx_glr_bar_001.png
    :alt: bar
    :srcset: /plot_types/basic/images/sphx_glr_bar_001.png,
             /plot_types/basic/images/sphx_glr_bar_001_2_00x.png 2.00x
    :class: sphx-glr-single-img

生成的 html 为

<img src="sphx_glr_bar_001_hidpi.png"
    srcset="_images/sphx_glr_bar_001.png,
            _images/sphx_glr_bar_001_2_00x.png 2x",
    alt="bar"
    class="sphx-glr-single-img" />
final_argument_whitespace = False#

最后一个参数是否可以包含空格?

has_content = False#

指令是否可以包含内容?

option_spec = {'alt': <function unchanged>, 'class': <function class_option>, 'srcset': <function unchanged>}#

选项名称到验证器函数的映射。

optional_arguments = 3#

必需参数之后的可选参数数量。

required_arguments = 1#

必需指令参数的数量。

run()[source]#

更新节点内容。