清單
目錄
範例
使用短橫線 (-
) 或星號 (*
) 作為項目符號。
- 項目符號清單項目 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 |