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
When rendering a document with GFM line breaks turned on, the following
# hello <ul> <li>1</li> <li>2</li> </ul> # world
renders as
<h1 id="hello">hello</h1> <ul><br> <li>1</li><br> <li>2</li><br></ul> <h1 id="world">world</h1>
According to this line from the GFM help page (emphasis added):
GFM treats newlines in paragraph-like content as real line breaks, which is probably what you intended.
... the <br> tags should only be added in "paragraph-like content".
<br>
The text was updated successfully, but these errors were encountered:
+1, breaks are quite tricky
Sorry, something went wrong.
#985
No branches or pull requests
When rendering a document with GFM line breaks turned on, the following
renders as
According to this line from the GFM help page (emphasis added):
... the
<br>
tags should only be added in "paragraph-like content".The text was updated successfully, but these errors were encountered: