Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add test for [text](<url\>) #562

Closed
andersk opened this issue Mar 11, 2019 · 1 comment
Closed

Add test for [text](<url\>) #562

andersk opened this issue Mar 11, 2019 · 1 comment
Milestone

Comments

@andersk
Copy link

andersk commented Mar 11, 2019

From commonmark/commonmark.js#158: there’s a discrepancy between cmark and commonmark.js on [text](<url\>). cmark gives

<p>[text](&lt;url&gt;)</p>

while commonmark.js previously gave

<p><a href="url%5C">text</a></p>

and was just fixed in Git to give

<p><a href="%3Curl%3E">text</a></p>

which seems most consistent with the spec.

@jgm
Copy link
Member

jgm commented Mar 20, 2019

Brought cmark into conformance.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants