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? 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
Take this example:
hello [foo bar][] there. [foo bar]: http://x
Most implementations at babelmark (including commonmark) correctly compile this to:
<p>hello <a href="http://x">foo bar</a> there.</p>
But this package does not match the reference id:
<p>hello [foo bar ][] there.</p>
The text was updated successfully, but these errors were encountered:
Properly normalize a collapsed reference link; fixes #281
8eee56a
dart-archive/markdown@5e9163b
Properly normalize a collapsed reference link; fixes dart-lang/markdo…
2689657
…wn#281 (dart-archive/markdown#282)
No branches or pull requests
Take this example:
Most implementations at babelmark (including commonmark) correctly compile this to:
But this package does not match the reference id:
The text was updated successfully, but these errors were encountered: