在 reStructuredText 中添加书签(第一次)
Add a bookmark in reStructuredText (rst)
是否有等效于以下内容的 reStructuredText 语法:
Click <a href="#foo">here</a> to skip to the best section
...
<a name="foo">This is the best section</a>
这在 markdown 中已经得到解答,但是在 reStructuredText 中是否存在?
这称为 'Internal Hyperlink Target',可以这样完成:
Click here_. to skip to the best section
.. _here:
This is the best section
是否有等效于以下内容的 reStructuredText 语法:
Click <a href="#foo">here</a> to skip to the best section
...
<a name="foo">This is the best section</a>
这在 markdown 中已经得到解答,但是在 reStructuredText 中是否存在?
这称为 'Internal Hyperlink Target',可以这样完成:
Click here_. to skip to the best section
.. _here:
This is the best section