Using commit: 2f183d7.
I'm a little confused about this case, and I think this is an issue with identifying inline HTML. Given the following input:
pulldown-cmark considers the \n> as part of the InlineHtml text and as starting a blockquote.
running cargo run -- -e produces these events:
0..10: Start(List(None))
0..10: Start(Item)
2..8: InlineHtml(Boxed("<c\n>"))
8..9: Start(BlockQuote(None))
8..9: End(BlockQuote(None))
0..10: End(Item)
0..10: End(List(false))
EOF