Comment 4 for bug 193622

Revision history for this message
Anand Chitipothu (anandology) wrote : Re: [Bug 193622] Re: markdown implementation does not recognizes https

On Thu, Feb 21, 2008 at 10:08 AM, Tzury Bar Yochay <email address hidden> wrote:
> @ markdown.py replace this line:
> AUTOLINK_RE = r'<(http://[^>]*)>' # <http://www.123.com>
> with this one:
> AUTOLINK_RE = r'<((?:f|ht)tps?://[^>]*)>' # <http://www.123.com> | <ftp://...> | <https:...>

I wouldn't suggest doing that. It becomes very difficult to manage if
we patch other modules.
I am planning to add the workaround that I suggested to infogami.