If this does not classify as a bug (probably status-bydesign anyway) then I would like to present this as a feature-request for convenience when copy+pasting certain urls.
The [TITLE](URL) markdown does not recognize urls that are missing a scheme/protocol, for example:
[Crittercism](www.crittercism.com/register?codez=ihdqcwduji)
I know RFC 1738 (also RFC 3305) would not consider this as a valid URL (due to the lack of a scheme), but it would be nice if the markdown converted this to a hyperlink anyway because of the [TITLE](URL) directive.
The logic seems fairly straightforward: if whatever is inside ( ) does not start with a valid scheme (See here for a full list of Official IANA Uniform Resource Identifier Schemes), then prepend http:// to the text inside ( ). Or, to cut out most false-positives, http:// could be prepended only to urls starting with www (and no scheme).
Without http:// it shows the title, but no clicky linky (emph added):
Crittercism - Real Time Crash Reports for iOS & Android Apps!
[Crittercism - ...](www.crittercism.com/register?codez=ihdqcwduji)
With http:// it works as intended (emph added):
Crittercism - Real Time Crash Reports for iOS & Android Apps!
[Crittercism - ...](http://www.crittercism.com/register?codez=ihdqcwduji)
http://—you're almost certainly copy-pasting URLS from address bars/hyperlinks and would always have the correct scheme anyway. No UA that I know of drops thehttp://when copying a URL. – Mark Trapp Feb 4 at 23:18[]and I figure it would take maybe 5 minutes to implement a fix. Not a huge benefit, but a quick fix so why not ). – chown Feb 5 at 0:28