You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Paragraph rules (no new paragraph until repeated horizontal or vertical whitespace) are not processed correctly in lists.
An example:
import markdown
let md ="""Normal paragraph* bullet item one* bullet starts here and continues hereand this is also the bullet, not a new paragraphThis is a new paragraph though"""echomarkdown(md, config =initGfmConfig())
Produces:
<p>Normal paragraph</p><ul><li><p>bullet item one</p></li><li><p>bullet starts here
and continues here</p></li></ul><p>and this is also the bullet, not a new paragraph</p><p>This is a new paragraph though</p>
Where the second to last paragraph lives outside the list. However, this is what GFM renders:
Normal paragraph
bullet item one
bullet starts here
and continues here
and this is also the bullet, not a new paragraph
This is a new paragraph though
The text was updated successfully, but these errors were encountered:
Paragraph rules (no new paragraph until repeated horizontal or vertical whitespace) are not processed correctly in lists.
An example:
Produces:
Where the second to last paragraph lives outside the list. However, this is what GFM renders:
Normal paragraph
bullet item one
bullet starts here
and continues here
and this is also the bullet, not a new paragraph
This is a new paragraph though
The text was updated successfully, but these errors were encountered: