We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
This is a disagreement between commonmark.js and cmark-c:
[test]:example ""third
The dingus shows this
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>
The text was updated successfully, but these errors were encountered:
Fix title-related backtracking with empty string
aee45c3
Fixes commonmark#281
3ef341b
Fixes #281
Successfully merging a pull request may close this issue.
This is a disagreement between commonmark.js and cmark-c:
The dingus shows this
cmark and cmark-gfm both disagree, parsing it like this:
Events from pulldown-cmark:
Events from commonmark.js:
XML from commonmark.js:
The text was updated successfully, but these errors were encountered: