On GitHub, I want to create a table containing snippets of code in Markdown. It works fine, except when I put a char pipe (i.e. |) between backward characters (i.e. `).
Here is what I want:
a | r ------------|----- `a += x;` | r1 `a |= y;` | r2
The problem is that the vertical bar in the code expression of the second row is interpreted as a column delimiter. Then the rendering of the table looks pretty ugly. How could I avoid this?
Note that I have already tried using the HTML | but it creates a |= y; .
github escaping pipe markdown
Marc de Verdelhan Jun 26 '13 at 12:24 2013-06-26 12:24
source share