I notice that markdown automatic links are completely nuked by the expression on line 90: s|<(.+?)>||g; \
e.g. if I have something like this in my source:
See <http://someurl.com/>
It is rendered with the link comletely missing. As a workaround I would need to write:
See [http://someurl.com/](<http://someurl.com/>)
which is cumbersome and doesn't look as nice.
Note that in my case I don't want a plaintext URL because it's not recognized when i convert the same document to HTML.
Basically, I'm wondering if there's a good reason for this statement at all? It will generally strip out URLs which are usually desired to see in the text form especially.
thanks!
I notice that markdown automatic links are completely nuked by the expression on line 90:
s|<(.+?)>||g; \e.g. if I have something like this in my source:
It is rendered with the link comletely missing. As a workaround I would need to write:
which is cumbersome and doesn't look as nice.
Note that in my case I don't want a plaintext URL because it's not recognized when i convert the same document to HTML.
Basically, I'm wondering if there's a good reason for this statement at all? It will generally strip out URLs which are usually desired to see in the text form especially.
thanks!