-
Notifications
You must be signed in to change notification settings - Fork 3.4k
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
Markdown parser acting funky with raw html #1370
Comments
Try adding a space after the hash.
Our RulesEffective: April 2, 2015 |
That didn't change anything @styfle ! |
It works fine on the demo page |
Could it be because Panini is using |
Was that a specific issue within |
I confirmed that adding a space works from version https://jsbin.com/feculaqota/edit?html,output I don't believe this is an issue with marked. The bug is likely in panini. |
Since I see that the markdown renderer is referenced within Panini, I decided to open the issue here, but feel free to tell me I'm wrong here.
I have a markdown file. I went from doing an
<h2>
as##
to using raw html. IE, I went from this:To:
The very strange thing here is that, when there's no line break in the raw
<html>
, the 2nd option, the markdown doesn't render! Anything subsequent render as a string literal and not as the intended markdown -> tag.simply adding a line break between
<h2>Our Rules</h2>
andEffective: April 2, 2015
fixed it. As so:The text was updated successfully, but these errors were encountered: