当前位置: 首页 > 编程笔记 >

Markdown Numbered lists

诸葛绍元
2023-03-14
本文向大家介绍Markdown Numbered lists,包括了Markdown Numbered lists的使用技巧和注意事项,需要的朋友参考一下

示例

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. 蓝色

(我喜欢红色,因为那是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.和括号语句之间没有空行,并且在“红色”的末尾两个空格,因此我们得到:

我最喜欢的颜色是:

  1. 蓝色

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

  3. 橙子

  4. [等等]

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

  1. 蓝色

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

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

 类似资料:

相关阅读

相关文章

相关问答