-
Notifications
You must be signed in to change notification settings - Fork 989
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
xmpp URL generation breaks #747
Comments
Which version of Zola? Sounds like a bug |
I've added a test for it in the |
This is on df720a5, I'm trying a new build soon to see if it is fixed. Thanks. |
Is it working for you? |
I can try this weekend if I can schedule some time for this. |
Okay, we can probably close this. I'm wrapping up packaging the 0.8 release for pkgsrc-wip today and will test a newer commit for my personal checkout. I'm fairly positive that your test is alright, I'll reopen this if I run into the issue again. Thanks! |
…eme (#817) Links that start with a scheme (e.g., `tel:18008675309`) inadvertently had a URL prefix prepended. Previously, only `mailto:` was handled, but given the sheer number of [registered URI schemes][uri-schemes], a loose pattern matcher is used to detect schemes instead. External links, as identified by the renderer, are now limited to `http` and `https` schemes. Fixes #747 and fixes #816. [uri-schemes]: https://www.iana.org/assignments/uri-schemes/uri-schemes.xhtml
…eme (#817) Links that start with a scheme (e.g., `tel:18008675309`) inadvertently had a URL prefix prepended. Previously, only `mailto:` was handled, but given the sheer number of [registered URI schemes][uri-schemes], a loose pattern matcher is used to detect schemes instead. External links, as identified by the renderer, are now limited to `http` and `https` schemes. Fixes #747 and fixes #816. [uri-schemes]: https://www.iana.org/assignments/uri-schemes/uri-schemes.xhtml
…eme (#817) Links that start with a scheme (e.g., `tel:18008675309`) inadvertently had a URL prefix prepended. Previously, only `mailto:` was handled, but given the sheer number of [registered URI schemes][uri-schemes], a loose pattern matcher is used to detect schemes instead. External links, as identified by the renderer, are now limited to `http` and `https` schemes. Fixes #747 and fixes #816. [uri-schemes]: https://www.iana.org/assignments/uri-schemes/uri-schemes.xhtml
given
the following is generated:
Is this intended Markdown behavior or can this parsing of URIs be improved?
Expected result was an xmpp:... in the href.
The text was updated successfully, but these errors were encountered: