-
Notifications
You must be signed in to change notification settings - Fork 274
Closed
Labels
Description
When a numbered list has a blank first line in its item, the line after it is supposed to be indented to match the imaginary space after it.
For examples:
1.
pulldown-cmark thinks this is code, but commonmark.js and commonmark-hs don't.
The dot in the list marker is at column two, so the child paragraph actually
starts in column *four* (there's three spaces of indentation built into the list).1.
This is not in the list at all. It's a paragraph after it.Details
Events from pulldown-cmark:
"0)\n (\n" -> [
Start(List(Some(0)))
Start(Item)
Text(Borrowed("("))
End(Item)
End(List(true))
]Events from pandoc:
"0)\n (\n" -> [
Start(List(Some(0)))
Start(Item)
End(Item)
End(List(true))
Start(Paragraph)
Text(Boxed("("))
End(Paragraph)
]Events from commonmark.js:
"0)\n (\n" -> [
Start(List(Some(0)))
Start(Item)
End(Item)
End(List(true))
Start(Paragraph)
Text(Boxed("("))
End(Paragraph)
]Reactions are currently unavailable