是否存在等效于以下内容的reStructuredText语法:
Click <a href="#foo">here</a> to skip to the best section
...
<a name="foo">This is the best section</a>这个问题已经在“降价”中得到了回答,但是在reStructuredText中存在这种情况吗?
发布于 2015-07-31 15:58:05
这被称为“内部超链接目标”,可以这样做:
Click here_. to skip to the best section
.. _here:
This is the best sectionhttps://stackoverflow.com/questions/31750423
复制相似问题