你如何在 bitbucket markdown 中转义管道字符?
How do you escape pipe character in bitbucket markdown?
我想将以下内容添加到 bitbucket wiki:
Key | Description |Default |
:-----------|:----------------------------------------------|:--------------|
env |Execution context {development|test|production}|development |
Markdown 有许多字符的反斜杠转义,但竖线 (|) 没有。我看到了一种使用 {development|test|production}
的解决方案,但这不起作用,因为您不能在 bitbucket markdown 中使用 html 。
有没有人找到在 bitbucket 上的 markdown table 单元格内容中包含竖线字符的方法?
Bitbucket 的 Markdown 可能不支持 HTML,但它支持 Unicode。在 table 单元格中,您可以使用另一个 看起来像 竖线字符的字符,例如⎮
(0x23AE, INTEGRAL EXTENSION):
Key | Description |Default |
:-----------|:----------------------------------------------|:--------------|
env |Execution context {development⎮test⎮production}|development |
此字符不会触发 Bitbucket 的 Markdown table 语法。
我想将以下内容添加到 bitbucket wiki:
Key | Description |Default |
:-----------|:----------------------------------------------|:--------------|
env |Execution context {development|test|production}|development |
Markdown 有许多字符的反斜杠转义,但竖线 (|) 没有。我看到了一种使用 {development|test|production}
的解决方案,但这不起作用,因为您不能在 bitbucket markdown 中使用 html 。
有没有人找到在 bitbucket 上的 markdown table 单元格内容中包含竖线字符的方法?
Bitbucket 的 Markdown 可能不支持 HTML,但它支持 Unicode。在 table 单元格中,您可以使用另一个 看起来像 竖线字符的字符,例如⎮
(0x23AE, INTEGRAL EXTENSION):
Key | Description |Default |
:-----------|:----------------------------------------------|:--------------|
env |Execution context {development⎮test⎮production}|development |
此字符不会触发 Bitbucket 的 Markdown table 语法。