如何在 markdown 中的表格内编写管道 (|)?
How can I write pipelines (|) inside tables in markdown?
我想在 table 中使用符号 |(管道)来记录我的代码。在不破坏 table 结构的情况下是否可以降价?
像这样:
| Text | Text | Text |
| :---: | :---: | :---: |
| || | some text here | blablabla |
正如您在下面看到的,管道在 markdown 中打破了 table,一旦它被用来划分 table 中的内容。我正在尝试找到一种在不破坏 table 内容的情况下以某种格式编写管道的方法:
|文字 |文字 |文字 |
| :---: | :---: | :---: |
| || |一些文字在这里 | blablabla |
我已经尝试了一些基本格式,例如:
`||`
```||```
*||*
**||**
***||***
<html>||</html>
<table struct in html>
还有许多其他人...
您可以使用反斜杠转义该字符:\|
或者您可以使用 HTML 实体 |
我想在 table 中使用符号 |(管道)来记录我的代码。在不破坏 table 结构的情况下是否可以降价?
像这样:
| Text | Text | Text |
| :---: | :---: | :---: |
| || | some text here | blablabla |
正如您在下面看到的,管道在 markdown 中打破了 table,一旦它被用来划分 table 中的内容。我正在尝试找到一种在不破坏 table 内容的情况下以某种格式编写管道的方法: |文字 |文字 |文字 | | :---: | :---: | :---: | | || |一些文字在这里 | blablabla |
我已经尝试了一些基本格式,例如:
`||`
```||```
*||*
**||**
***||***
<html>||</html>
<table struct in html>
还有许多其他人...
您可以使用反斜杠转义该字符:\|
或者您可以使用 HTML 实体 |