Parsed string containing unescaped backslashes are render weirdly : Example : ``` | A\B | ``` Is represented in the AST as `A\\B` The sames escaped string: ``` | A\\B | ``` is also represented `A\\B`, so we can not easily rendered the table cell.
Parsed string containing unescaped backslashes are render weirdly :
Example :
Is represented in the AST as
A\\BThe sames escaped string:
is also represented
A\\B, so we can not easily rendered the table cell.