Link

列表

目录

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

Markdown 默认支持很多列表格式.

无序列表

  • Item 1
  • Item 2
  • Item 3

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

_或_

* 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

定义列表

此格式 GitHub 默认编译器不支持

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>