-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Pipe-escape \|
inside table is broken (also pipe-symbol in code-block)
#592
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
To add onto this, there is currently no way to put a codeblock with a pipe in a table
and
currently, id have to write
which is not quite what i want to write, since im trying to document a type in typescript and the whole thing is a single type. |
@ddivecs I ran into the same problem. In fact i am having so many problems - i already reported 2 bugs - that i restructured my docs into the original source and the docsify source. I generate the docsify source with the help of a script i wrote to fix/workaround a bunch of bugs/errors (like this one). |
\|
inside table is broken\|
inside table is broken (also pipe-symbol in code-block)
i ended up just inlining an HTML table because my table got a little more complex (i needed a large code block using triple back ticks instead of just an inline codeblock) but i still believe that in the simple case where you just want a vertical bar in a table, there should be an easy way to escape a vertical bar. |
Looks like |
|
If i have a table with an escaped pipe-symbol like the following one:
it is rendered like:
because the escape-sequence is not recognized and/or handled properly.
Replacing
\|
with|
is my workaround atm.The text was updated successfully, but these errors were encountered: