包括管道作为Git Readme.md文件中表中的内容

时间:2018-06-20 17:41:18

标签: git github gitlab markdown readme

我正在使用Gitlab并尝试包含管道|在README.md文件中的表中作为内容签名。我遵循了the example showed here,但是输出不是预期的。还有其他方法吗?

自述内容

| Name     | Character |
| ---      | ---       |
| Backtick | `         |
| Pipe     | \|        |

我的输出

README Table with pipe

预期产量

README Table with pipe expected

此外,如何在这样的代码块中使用管道:

| Name         | Command   |
| ---          | ---       |
| Show Files   | `ls`      |
| Grep History | `history | grep pip`| 

1 个答案:

答案 0 :(得分:2)

您可以使用html代码,且&和#之间没有空格。

& #124;


| Name     | Character |
| ---      | ---       |
| Backtick | `         |
| Pipe     | |    |

根据我们的评论,您对第二部分的回答将是:

| Grep History | <code>history &#124; grep pip<\code>|