Mercurial > public > sg101
changeset 658:2adf01661ac5
Need to update the Markdown urlize extension too.
For reference, here is where I got it:
https://github.com/r0wb0t/markdown-urlize
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 11 May 2013 16:21:55 -0500 |
parents | 6467eabe74d4 |
children | 8e6b8ffe5f34 |
files | tools/mdx_urlize.py |
diffstat | 1 files changed, 3 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/tools/mdx_urlize.py Sat May 11 15:49:02 2013 -0500 +++ b/tools/mdx_urlize.py Sat May 11 16:21:55 2013 -0500 @@ -1,7 +1,4 @@ -""" -Taken from: https://github.com/r0wb0t/markdown-urlize - -A more liberal autolinker +"""A more liberal autolinker Inspired by Django's urlize function. @@ -64,9 +61,9 @@ else: url = 'http://' + url - el = markdown.etree.Element("a") + el = markdown.util.etree.Element("a") el.set('href', url) - el.text = markdown.AtomicString(text) + el.text = markdown.util.AtomicString(text) return el class UrlizeExtension(markdown.Extension):