使用Github Markdown:如何将文字管道添加到表中

时间:2018-11-11 20:48:55

标签: github-flavored-markdown

我正在使用Unix命令和markdown制作备忘单。当我在Unix命令中使用管道时,会得到一个额外的列。我似乎找不到要给出文字|的字符。 lswc之间的管道分为4列。

示例:

| # | Command | Description |
|:--|:--------|:------------|
| 1. | ls | wc –l | count number of files in a directory. |

已尝试:反斜杠,正斜杠,单个反引号,三个反引号,并用**,<code> </code>,2个空格包围

1 个答案:

答案 0 :(得分:1)

添加反斜杠的工作原理:

| # | Command | Description |
|:--|:--------|:------------|
| 1. | ls \| wc –l | count number of files in a directory. |