We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
According to GitHub Flavored Markdown Spec example 200:
| f\|oo | | ------ | | b `\|` az | | b **\|** im |
should render as
<table> <thead> <tr> <th>f|oo</th> </tr> </thead> <tbody> <tr> <td>b <code>|</code> az</td> </tr> <tr> <td>b <strong>|</strong> im</td> </tr> </tbody> </table>
But:
puts CommonMarker.render_html(<<~MD, %i(DEFAULT), %i(table)) | f\|oo | | ------ | | b `\|` az | | b **\|** im | MD
results in:
<p>| f|oo | | ------ | | b <code>|</code> az | | b <strong>|</strong> im |</p>
The text was updated successfully, but these errors were encountered:
Error: ruby translates \| to |, \\| is needed. My bad.
Sorry, something went wrong.
No branches or pull requests
According to GitHub Flavored Markdown Spec example 200:
should render as
But:
results in:
The text was updated successfully, but these errors were encountered: