aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--markdown/extensions/wikilinks.py2
1 files changed, 1 insertions, 1 deletions
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)