列表
目录
示例
使用短横线 (-
) 或星号 (*
) 作为项目符号。
- 项目符号列表项目 1
- 项目符号列表项目 2
- 项目符号列表项目 3
编号列表项目 1.句点和第一个字母之间留两个空格有助于对齐。
编号列表项目 2. 让我们添加一个注释。
注意
编号列表项目 3,其中包含代码块。代码块之前需要空一行。
$ docker run hello-world
编号列表项目 4,其中包含一个项目符号列表,以及一个嵌套的编号列表。
子项目 1
子项目 2
- 子子项目 1
- 子子项目 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 |