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
It would be great if you could add support for encoding emails as specified in Gruber's spec.
http://daringfireball.net/projects/markdown/syntax#autolink
Currently, <address@example.com> gets parsed semi-correctly to <a href="mailto:address@example.com">address@example.com</a>
<address@example.com>
<a href="mailto:address@example.com">address@example.com</a>
It should be parsed into this, though:
<a href="mailto:addre ss@example.co m">address@exa mple.com</a>
You can see the difference on your demo page.
Thanks and keep up the great work!
The text was updated successfully, but these errors were encountered:
👍
Sorry, something went wrong.
Please fix…
See #212
I think this is out of scope for now since it isn't part of CommonMark or the GitHub Flavoured extension.
Successfully merging a pull request may close this issue.
It would be great if you could add support for encoding emails as specified in Gruber's spec.
http://daringfireball.net/projects/markdown/syntax#autolink
Currently,
<address@example.com>
gets parsed semi-correctly to<a href="mailto:address@example.com">address@example.com</a>
It should be parsed into this, though:
You can see the difference on your demo page.
Thanks and keep up the great work!
The text was updated successfully, but these errors were encountered: