bugdown: Remove dead code

The user of this function was removed in 97dd20ec.

(imported from commit c3823df65172f3799658e36d7ba183f661e9fe65)
This commit is contained in:
Keegan McAllister 2013-01-28 18:30:02 -05:00
parent 02fd0fbb06
commit f2659b7dcd

View File

@ -172,10 +172,6 @@ _privacy_re = re.compile(r'\w', flags=re.UNICODE)
def _sanitize_for_log(md):
return repr(_privacy_re.sub('x', md))
def _linkify(match):
url = match.group('url')
return ' [%s](%s) ' % (url, url)
def convert(md):
"""Convert Markdown to HTML, with Humbug-specific settings and hacks."""