-
Notifications
You must be signed in to change notification settings - Fork 274
Closed
Labels
Description
Consider this markdown
# foo \
bar \Here's what it looks like in GitHub:
foo \
bar \
But pulldown-cmark silently eats the backslashes at the ends of these lines.
Details
Events from pulldown-cmark:
"# \\\n^\n" -> [
Start(Heading { level: H1, id: None, classes: [], attrs: [] })
End(Heading(H1))
Start(Paragraph)
Text(Borrowed("^"))
End(Paragraph)
]Events from pandoc:
"# \\\n^\n" -> [
Start(Heading { level: H1, id: None, classes: [], attrs: [] })
Text(Boxed("\\"))
End(Heading(H1))
Start(Paragraph)
Text(Boxed("^"))
End(Paragraph)
]Events from commonmark.js:
"# \\\n^\n" -> [
Start(Heading { level: H1, id: None, classes: [], attrs: [] })
Text(Boxed("\\"))
End(Heading(H1))
Start(Paragraph)
Text(Boxed("^"))
End(Paragraph)
]Reactions are currently unavailable