reStructuredText中的链接图像

TBi*_*iek 42 restructuredtext

如何使用reStructuredText创建链接图像?

我发现了

.. image:: /path/to/image.jpg
Run Code Online (Sandbox Code Playgroud)

用于图像和外部超链接

'Python <http://www.python.org/>'_
Run Code Online (Sandbox Code Playgroud)

对于链接,但我不知道如何组合它们或者如果可能的话.

小智 69

两种方法:

  1. 在内嵌图像:

    .. image:: pageflip-200.png
       :target: pageapplet/index.html
    
    Run Code Online (Sandbox Code Playgroud)
  2. 有参考,如:

    Click on my |ImageLink|_
    
    .. |ImageLink| image:: /images/link.png
    .. _ImageLink: http://link.url/
    
    Run Code Online (Sandbox Code Playgroud)