我正在使用 Sphinx 为 Python 程序编写文档。我想创建一个带有嵌套列表和自动编号的有序列表。
我想获得这样的东西:
在这里它遵循一个编号列表
- 这是列表的第一项
- 这是第二个
- 第二个项目有一个包含两个项目的嵌套列表
- 这是嵌套列表的最后一项
- 父列表继续其第三项
如果我明确使用数字作为编号列表,一切都很好。当我想使用自动编号时,问题就出现了,因为我想保持灵活性。清单很长,将来可能会发生变化,我不想在介绍新项目时更改所有数字。
我尝试使用以下代码:
Here it follows a numbered list
#. This is the first item of the list
#. This is the second one
* The second item has a nested list with two items
* this is the last item of the nested list
#. The parent list continues with its third item
我得到的结果如下:
在这里它遵循一个编号列表
- 这是列表的第一项
这是第二个
- 第二个项目有一个包含两个项目的嵌套列表
- 这是嵌套列表的最后一项
.1。父列表继续其第三项
[我必须添加一些字符,这里是一个点,用于第三项或 stackoverflow 中的降价系统显示 3!]
如您所见,嵌套列表从头开始重新开始后的编号。