Skip to main content Link Search Menu Expand Document (external link)

列表

目录

  1. 无序列表
  2. 有序列表
  3. 任务列表
  4. 定义列表

大部分列表可使用纯 Markdown 渲染。

无序列表

  • Item 1
  • Item 2
  • Item 3

or

  • Item 1
  • Item 2
  • Item 3
- Item 1
- Item 2
- Item 3

_or_

* Item 1
* Item 2
* Item 3

有序列表

  1. Item 1
  2. Item 2
  3. Item 3
1. Item 1
1. Item 2
1. Item 3

任务列表

  • hello, this is a todo item
  • hello, this is another todo item
  • goodbye, this item is done
- [ ] hello, this is a todo item
- [ ] hello, this is another todo item
- [x] goodbye, this item is done

定义列表

定义列表需要 HTML 语法,并且不支持 GitHub Flavored Markdown 编译器。

Name
Godzilla
Born
1952
Birthplace
Japan
Color
Green
<dl>
  <dt>Name</dt>
  <dd>Godzilla</dd>
  <dt>Born</dt>
  <dd>1952</dd>
  <dt>Birthplace</dt>
  <dd>Japan</dd>
  <dt>Color</dt>
  <dd>Green</dd>
</dl>