-
-
Notifications
You must be signed in to change notification settings - Fork 225
Closed
Description
This is a disagreement between commonmark.js and cmark-c:
[test]:example
""third
The dingus shows this
[test]:example ""third
cmark and cmark-gfm both disagree, parsing it like this:
""third
Events from pulldown-cmark:
"[~]:r\n\"\"A" -> [
Start(Paragraph)
Text(Borrowed("\"\"A"))
End(Paragraph)
]
Events from commonmark.js:
"[~]:r\n\"\"A" -> [
Start(Paragraph)
Text(Boxed("[~]:r"))
SoftBreak
Text(Boxed("\"\"A"))
End(Paragraph)
]
XML from commonmark.js:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE document SYSTEM "CommonMark.dtd">
<document xmlns="http://commonmark.org/xml/1.0">
<paragraph>
<text>[</text>
<text>~</text>
<text>]</text>
<text>:r</text>
<softbreak />
<text>"</text>
<text>"</text>
<text>A</text>
</paragraph>
</document>
Metadata
Metadata
Assignees
Labels
No labels