[ACCEPTED]-How to show the pipe "|" symbol in Markdown table?-markdown
Accepted answer
This depends on your markdown interpreter. But 2 in general markdown escapes with backslash (like 1 markdown extra additional the pipe)
Column1 | Column2
------- | -------
\| | hello
This works in markdown:
Column1 | Column2 |
---|---|
| | hello |
You can use the HTML Entity
Column1 | Column2
------- | -------
| | hello
Unicode Character VERTICAL LINE
0
Source:
stackoverflow.com
More Related questions
Cookie Warning
We use cookies to improve the performance of the site. By staying on our site, you agree to the terms of use of cookies.