mirror of
https://github.com/xoofx/markdig.git
synced 2026-02-13 21:42:57 +00:00
Autolink does not recognize domain names followed by URL fragments query or port #230
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @yufeih on GitHub (Oct 25, 2018).
Due to #253, https://github.com#a, https://github.com?a, https://github.com:443 is no longer recognized as autolink. The spec does not say about requiring a
/after domain name, browsers can also handles these types of links just fine.cc @MihaZupan
@MihaZupan commented on GitHub (Oct 25, 2018):
I see, I think the only change needed here is to check for these characters along with the '/' check in LinkHelper. I'll do a PR when I get to a computer.
@xoofx commented on GitHub (Oct 29, 2018):
Fixed by PR #260
@yufeih commented on GitHub (Oct 30, 2018):
Thank you guys for the fix, awesome 🎁