編號列表
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 如何處理換行符。