Warning: file_get_contents(/data/phpspider/zhask/data//catemap/6/google-chrome/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Hyperlink 在reStructuredText(rst)中添加书签_Hyperlink_Bookmarks_Restructuredtext - Fatal编程技术网

Hyperlink 在reStructuredText(rst)中添加书签

Hyperlink 在reStructuredText(rst)中添加书签,hyperlink,bookmarks,restructuredtext,Hyperlink,Bookmarks,Restructuredtext,是否存在以下等效项的RestructedText语法: Click <a href="#foo">here</a> to skip to the best section ... <a name="foo">This is the best section</a> 单击可跳到最佳部分 ... 这是最好的部分 这一点已在markdown中得到回答,但这是否存在于StructuredText中?这被称为“内部超链接目标”,可以这样做: Cl

是否存在以下等效项的RestructedText语法:

Click <a href="#foo">here</a> to skip to the best section

... 

<a name="foo">This is the best section</a>
单击可跳到最佳部分
... 
这是最好的部分

这一点已在markdown中得到回答,但这是否存在于StructuredText中?

这被称为“内部超链接目标”,可以这样做:

Click here_. to skip to the best section

.. _here:

This is the best section