-
Notifications
You must be signed in to change notification settings - Fork 274
Closed
Labels
Description
Events from pulldown-cmark:
"j***5*=*\n" -> [
Start(Paragraph)
Text(Boxed("j**"))
Start(Emphasis)
Text(Borrowed("5"))
End(Emphasis)
Text(Boxed("=*"))
End(Paragraph)
]Details
Events from pandoc:
"j***5*=*\n" -> [
Start(Paragraph)
Text(Boxed("j*"))
Start(Emphasis)
Start(Emphasis)
Text(Boxed("5"))
End(Emphasis)
Text(Boxed("="))
End(Emphasis)
End(Paragraph)
]Events from commonmark.js:
"j***5*=*\n" -> [
Start(Paragraph)
Text(Boxed("j*"))
Start(Emphasis)
Start(Emphasis)
Text(Boxed("5"))
End(Emphasis)
Text(Boxed("="))
End(Emphasis)
End(Paragraph)
]AST from pandoc:
Pandoc {
meta: {},
blocks: [
Para(
[
Str(
"j*",
),
Emph(
[
Emph(
[
Str(
"5",
),
],
),
Str(
"=",
),
],
),
],
),
],
}
Reactions are currently unavailable