-
Notifications
You must be signed in to change notification settings - Fork 274
Closed
Labels
Description
Found with modified differential fuzzer (please mark as a fuzzing output): #673
Events from pulldown-cmark:
"<G\n>\n" -> [
Start(Paragraph)
Html(Boxed("<G\n>"))
End(Paragraph)
]Events from pandoc:
"<G\n>\n" -> [
Start(Paragraph)
Text(Boxed("<G"))
End(Paragraph)
Start(BlockQuote)
End(BlockQuote)
]Events from commonmark.js:
"<G\n>\n" -> [
Start(Paragraph)
Text(Boxed("<G"))
End(Paragraph)
Start(BlockQuote)
End(BlockQuote)
]AST from pandoc:
Pandoc {
meta: {},
blocks: [
Para(
[
Str(
"<G",
),
],
),
BlockQuote(
[],
),
],
}
Reactions are currently unavailable