使用 Github Markdown:如何将文字管道变成 table

Using Github Markdown: How to get literal Pipe into a table

我正在使用 Unix 命令和降价制作作弊 sheet。当我在 Unix 命令中使用管道时,我得到一个额外的列。我似乎找不到给出文字 | 的字符。 lswc 之间的管道给出 4 列。

示例:

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

试过: 反斜杠、正斜杠、单反引号、三重反引号,用两个空格包围,**,<code> </code>,

添加反斜杠有效:

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