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
Currently code blocks that contain HTML entity codes are not being displayed correctly.
If my markdown is this:
1 < 2
It turns it into the following html:
<pre><code> 1 &lt; 2\n</code></pre>\n
So the & in < is being replaced with its own entity code, which isn't the expected behaviour.
&
<
The text was updated successfully, but these errors were encountered:
Just use the < character since in code blocks and in inline code spans all characters are taken literally:
<
This is a literal > greater sign and a > greater than entity
Sorry, something went wrong.
gettalong
No branches or pull requests
Currently code blocks that contain HTML entity codes are not being displayed correctly.
If my markdown is this:
It turns it into the following html:
So the
&
in<
is being replaced with its own entity code, which isn't the expected behaviour.The text was updated successfully, but these errors were encountered: