如何在 reStructuredText 中创建一个编号列表,其中每个项目都是指向下面一些相应文本的链接?例如,用于“常见问题解答”页面,其中问题被列出并编号为超链接,每个问题的链接都指向页面下方的答案。例如:
1. question 1 [links to #1 below]
2. question 2 [links to #2 below]
3. question 3 [links to #3 below]
4. ...
#1 question 1:
the answer to question 1
#2 question 2:
the answer to question 2
#3 question 3:
the answer to question 3
在 HTML 中,这可以用hrefs
和#
符号来完成,但我想知道等效的 reStructuredText 语法是什么?