aboutsummaryrefslogtreecommitdiffstats
path: root/markdown/extensions/extra.py
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@gmail.com>2011-06-07 10:48:55 -0400
committerWaylan Limberg <waylan@gmail.com>2011-06-07 10:48:55 -0400
commit11124d9f8ddd547c93078dcf6380deacec7fc32f (patch)
treefd6279145e7dae3ef02505c8ffd74ac0d106fcf0 /markdown/extensions/extra.py
parentbca0d6bf8b26707431c936ed51419358b9e57749 (diff)
downloadmarkdown-11124d9f8ddd547c93078dcf6380deacec7fc32f.tar.gz
markdown-11124d9f8ddd547c93078dcf6380deacec7fc32f.tar.bz2
markdown-11124d9f8ddd547c93078dcf6380deacec7fc32f.zip
Added smart_strong extension. Fixes Issue #17. Like PHP Markdown Extra, we now include smart handling of double underscores (not just single underscores). The new behavior may be called seperately as the 'smart_strong' extension or as part of the 'extra' extension.
Diffstat (limited to 'markdown/extensions/extra.py')
-rw-r--r--markdown/extensions/extra.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/markdown/extensions/extra.py b/markdown/extensions/extra.py
index e569029..60ad55e 100644
--- a/markdown/extensions/extra.py
+++ b/markdown/extensions/extra.py
@@ -29,7 +29,8 @@ when you upgrade to any future version of Python-Markdown.
import markdown
-extensions = ['fenced_code',
+extensions = ['smart_strong',
+ 'fenced_code',
'footnotes',
'headerid',
'def_list',