Events from pulldown-cmark:
"* _\n_**\n ___\n ^_" -> [
Start(List(None))
Start(Item)
Text(Boxed("_"))
SoftBreak
Start(Emphasis)
Text(Boxed("**"))
Rule
Text(Borrowed("^"))
End(Emphasis)
End(Item)
End(List(false))
]
Events from commonmark.js:
"* _\n_**\n ___\n ^_" -> [
Start(List(None))
Start(Item)
Text(Boxed("_"))
SoftBreak
Text(Boxed("_**"))
Rule
Text(Boxed("^_"))
End(Item)
End(List(false))
]