-
Notifications
You must be signed in to change notification settings - Fork 163
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
Links in angle brackets <urlscheme://example> #743
Comments
I suppose |
Examples- https://example.com/ // <https://example.com/>
- mailto:nobody@example.com // <mailto:nobody@example.com>
- uri://example.com // <uri://example.com>
- tel:+555 // <tel:+555>
- geo:59.5,11.0 // <geo:59.5,11.0>
- irc://example.com/channel // <irc://example.com/channel>
- <x-web-search://>
- <x-apple-reminder://> Generic URIsI think that all links inside <>-brackets should support any URL starting with any legal URI scheme, not just URI-schemes known to Markdown-mode. It is still convenient that Markdown-mode will linkify well-known URIs typed without the <>-brackets. According to RFC3986:
So essentially match this regexp: See also Uniform Resource Identifier (URI) on Wikipedia. |
I have merged #751 |
Highlight links in angle brackets
<urlscheme://example>
, according tohttps://spec.commonmark.org/0.30/#link-destination
https://www.markdownguide.org/basic-syntax#urls-and-email-addresses
The text was updated successfully, but these errors were encountered: