From 4e3ca945b7f1df90052e221fd24d7ec7dbeb38ac Mon Sep 17 00:00:00 2001 From: Waylan Limberg Date: Fri, 20 Mar 2009 21:36:13 -0400 Subject: Cleaning up some stuff from last commit. --- markdown/extensions/wikilinks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/markdown/extensions/wikilinks.py b/markdown/extensions/wikilinks.py index 36a00e8..feb55b3 100644 --- a/markdown/extensions/wikilinks.py +++ b/markdown/extensions/wikilinks.py @@ -113,7 +113,7 @@ class WikiLinks(markdown.inlinepatterns.Pattern): label = m.group(2).strip() url = self.config['build_url'][0](label, base_url, end_url) a = markdown.etree.Element('a') - a.text = label #markdown.AtomicString(label) + a.text = label a.set('href', url) if html_class: a.set('class', html_class) -- cgit v1.2.3