创建表
可以使用竖线 | 和连字符 - 创建表。 连字符用于创建每列的� �题,而竖线用于分隔每列。 必须在表� �前包含空白链接,以便其正确呈现。
| First Header  | Second Header |
| ------------- | ------------- |
| Content Cell  | Content Cell  |
| Content Cell  | Content Cell  |

表� �末尾的竖线可选。
单元� �的宽度可以不同,� 需在列内准确对齐。 � �题行的第一列中必须至少有三个横线。
| Command | Description |
| --- | --- |
| git status | List all new or modified files |
| git diff | Show file differences that haven't been staged |

� �式化表� �中的内容
可以在表� �中使用� �式,例如链接、内联代� �块和文本� �式:
| Command | Description |
| --- | --- |
| `git status` | List all *new or modified* files |
| `git diff` | Show file differences that **haven't been** staged |

可以通过在� �题行中连字符的左侧、右侧或两侧添� 冒号 :,来� 左、� 右或居中对齐列中的文本。
| Left-aligned | Center-aligned | Right-aligned |
| :---         |     :---:      |          ---: |
| git status   | git status     | git status    |
| git diff     | git diff       | git diff      |

若要包含竖线 | 作为单元� �中的内容,请在竖线前使用 \:
| Name     | Character |
| ---      | ---       |
| Backtick | `         |
| Pipe     | \|        |
