列表
例子
使用破折号 ( -
) 或星号 ( *
) 作为项目符号点。
- 项目符号列表项目 1
- 项目符号列表项目 2
- 项目符号列表第 3 项
编号列表项 1. 句点和第一个字母之间的两个空格有助于对齐。
编号列表项 2。让我们在其中添加注释。
注意:我们做到了!
编号列表项 3 中包含一个代码块。您需要在代码块发生之前有一个空行。
$ docker run hello-world
编号列表项 4,其中包含项目符号列表和编号列表。
分项1
分项2
- 分分项1
- Sub-sub-item-2 里面有一张桌子,因为我们喜欢聚会!缩进非常重要。
标头 1 标题 2 事情 1 事情 2 事情 3 事情 4
Markdown
- Bullet list item 1
- Bullet list item 2
- Bullet list item 3
1. Numbered list item 1. Two spaces between the period and the first letter
helps with alignment.
2. Numbered list item 2. Let's put a note in it.
> **Note**: We did it!
3. Numbered list item 3 with a code block in it. You need the blank line before
the code block happens.
```bash
$ docker run hello-world
```
4. Numbered list item 4 with a bullet list inside it and a numbered list
inside that.
- Sub-item 1
- Sub-item 2
1. Sub-sub-item 1
2. Sub-sub-item-2 with a table inside it.
Indentation is super important.
| Header 1 | Header 2 |
| -------- | -------- |
| Thing 1 | Thing 2 |
| Thing 3 | Thing 4 |