编号列表
1. Lists
2. Can be
3. Numbered
- 清单
- 可
- 编号
请注意,数字本身会被忽略:
1. This is the first item
5. This is the fifth item
7. This is the seventh item
- 这是第一项
- 这是第五项
- 这是第七项
但是,第一个数字用于开始编号:
3. This list starts at #3
2. However, this item is #4, despite being prefixed with `2.`
- 此列表从#3 开始
- 但是,这个项目是#4,尽管以
2.
为前缀
这可以用于在被其他文本/图像/表/等中断后恢复列表。
My very favorite colors are:
1. Blue
5. Red
(I like red because that's the best flavor of Skittle. But I digress.)
3. Orange
9. [etc]
我最喜欢的颜色是:
- 蓝色
- 红色
(我喜欢红色,因为这是 Skittle 最好的味道。但我离题了。)
- 橙子
- [等等]
你还可以以这种方式注释列表项而不中断编号:
My very favorite colors are:
1. Blue
5. Red
(I like red because that's the best flavor of Skittle. But I digress.)
9. Orange
11. [etc]
请注意,在 5.和括号语句之间没有空行,并且在 Red
的末尾有两个空格,因此我们得到:
我最喜欢的颜色是:
- 蓝色
- 红色
(我喜欢红色,因为这是 Skittle 最好的味道。但我离题了。)- 橙子
- [等等]
没有这两个空格,该部分将是:
- 蓝色
- 红色(我喜欢红色,因为这是 Skittle 最好的味道。但我离题了。)
…因为 Markdown 如何处理换行符。