编号列表

1. Lists
2. Can be
3. Numbered
  1. 清单
  2. 编号

请注意,数字本身会被忽略:

1. This is the first item
5. This is the fifth item
7. This is the seventh item
  1. 这是第一项
  2. 这是第五项
  3. 这是第七项

但是,第一个数字用于开始编号:

3. This list starts at #3
2. However, this item is #4, despite being prefixed with `2.`
  1. 此列表从#3 开始
  2. 但是,这个项目是#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]

我最喜欢的颜色是:

  1. 蓝色
  2. 红色

(我喜欢红色,因为这是 Skittle 最好的味道。但我离题了。)

  1. 橙子
  2. [等等]

你还可以以这种方式注释列表项而不中断编号:

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 的末尾两个空格,因此我们得到:

我最喜欢的颜色是:

  1. 蓝色
  2. 红色
    (我喜欢红色,因为这是 Skittle 最好的味道。但我离题了。)
  3. 橙子
  4. [等等]

没有这两个空格,该部分将是:

  1. 蓝色
  2. 红色(我喜欢红色,因为这是 Skittle 最好的味道。但我离题了。)

…因为 Markdown 如何处理换行符。