If i have a table with an escaped pipe-symbol like the following one: ``` | h1 | h2 | | --- | --- | | abc \| def | xyz | ``` it is rendered like:  because the escape-sequence is not recognized and/or handled properly. Replacing `\|` with `|` is my workaround atm.