Markdown is a great tool for formatting plain text into pretty html, but it doesn't turn plain-text links into URLs automatically. Like this one:
How do I get markdown to add tags to URLs when I format a block of text?
|
Markdown is a great tool for formatting plain text into pretty html, but it doesn't turn plain-text links into URLs automatically. Like this one: How do I get markdown to add tags to URLs when I format a block of text?
| ||||
|
feedback
|
|
I couldn't get superjoe30's regular expression to compile, so I adapted his solution to convert plain URLs (within Markdown text) to be Markdown compatible. The modified filter:
Within the template:
| |||||||
feedback
|
|
You could write an extension to markdown. Save this code as mdx_autolink.py
Then use it in your template like this:
Update: I've found an issue with this solution: When markdown's standard link syntax is used and the displayed portion matches the regular expression, eg:
strangely becomes: www.google.com But who'd want to do that anyway?! | ||||
|
feedback
|
|
This isn't a feature of Markdown -- what you should do is run a post-processor against the text looking for a URL-like pattern. There's a good example in the Google app engine example code -- see the | |||
|
feedback
|
|
Best case scenario, edit the markdown and just put < > around the URLs. This will make the link clickable. Only problem is it requires educating your users, or whoever writes the markdown. | |||
|
feedback
|
|
There's an extra for this in python-markdown2: | |||
|
feedback
|
|
I was using the Django framework, which has a filter called urlize, which does exactly what I wanted. However, it only works on plain text, so I couldn't pass is through the output of markdown. I followed this guide to create a custom filter called urlify2 which works on html, and passed the text through this filter:
The urlify2.py filter:
| ||||
|
feedback
|