似乎重组文本标记在图像选项方面非常有限:
识别以下选项:
alt:文字
高度:长度
width:当前行宽的长度或百分比
scale:整数百分比("%"符号是可选的)
对齐:"顶部","中","底部","左","中心",或&# 34;右"
target:text(URI或引用名称)
是否可以通过reStructuredText标记设置一些自定义属性,如title?
e.g。
.. image:: foobar.jpg
:title: mouse over text, hi!
输出:
<img src="foobar.jpg" title="mouse over text, hi!"></img>
答案 0 :(得分:1)
根据docutils,可识别以下选项:alt,height,width,scale,align,target,class和name。没有标题。
选项包括rewriting in the client with JavaScript或与docutils团队合作制作feature request并实施。
答案 1 :(得分:0)
您可以使用figure
.. figure:: picture.png
This is the caption of the figure.