跳到主要内容

表格

(前往天路网,查看实例)


天路网支持:多种不同的表格格式1,基本都能达到同样的效果,在此以 GitHub样式 Markdown表格为例介绍。

1)您可以使用 管道符 | 连字符 - 创建表格。连字符用于创建每列的标题,而管道分隔每列。

| 表头1  | 表头2  |
| ------ | ------ |
| 内容格1 | 内容格2 |
| 内容格3 | 内容格4 |

上面👆🏻代码将显示:

表头1表头2
内容格1内容格2
内容格3内容格4

2)表格两端的管道是可省略。

3)单元格的宽度可以变化,并且不需要在列内完全对齐。

 Command | Description 
- | -
git status | List all new or modified files
git diff | Show file differences that haven't been staged

上面👆🏻代码将显示:

CommandDescription
git statusList all new or modified files
git diffShow file differences that haven't been staged

4)可以单元格内设置文本格式,加入链接、图片及对齐等。其中第二行的| :--- | :---: |---:| 中:

| :--- | 为左对齐 | ---: | 为右对齐 | :---: | 为居中 注:如需在单元格中加入管道符[color=#29BB89]|[/color] ”作为单元格中的内容,请在管道前使用 \

| 左对齐 | 居中 |右对齐|
| :--- | :---: |---:|
| `代码` | **加粗** _斜体_ *斜体* [链接](https://www.hrjh.org/) |456 |
| 123| [image=https://www.hrjh.org/assets/files/2023-04-02/1680472480-454707-fontsize.png width=40 unit=%]|**管道符** “ **[color=#29BB89]\| [/color]**"|

上面👆🏻代码将显示如下:

左对齐居中右对齐
代码加粗 斜体 斜体 链接6
1预览管道符 "|"

1 另外也支持Pandoc's管线表格扩展PHP Markdown Extra格式