aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@gmail.com>2008-11-22 23:12:10 -0500
committerWaylan Limberg <waylan@gmail.com>2008-11-22 23:12:10 -0500
commitbe7c1cf7b3367f5afbbe09f093ec96074bf468d5 (patch)
treefed5e13a8449d34052e5e8b6802c9a0aa691a9f0
parent7f96dedccdef0c5d4c67759c7c1b5a4721e9db1e (diff)
downloadmarkdown-be7c1cf7b3367f5afbbe09f093ec96074bf468d5.tar.gz
markdown-be7c1cf7b3367f5afbbe09f093ec96074bf468d5.tar.bz2
markdown-be7c1cf7b3367f5afbbe09f093ec96074bf468d5.zip
Added definition lists to extra extension.
-rw-r--r--markdown/extensions/extra.py9
1 files changed, 3 insertions, 6 deletions
diff --git a/markdown/extensions/extra.py b/markdown/extensions/extra.py
index e99bec4..4a2ffbf 100644
--- a/markdown/extensions/extra.py
+++ b/markdown/extensions/extra.py
@@ -6,9 +6,6 @@ Python-Markdown Extra Extension
A compilation of various Python-Markdown extensions that imitates
[PHP Markdown Extra](http://michelf.com/projects/php-markdown/extra/).
-As no-one has yet written a Definition List extension for Python-
-Markdown, definition lists are not yet supported by Extra.
-
Note that each of the individual extensions still need to be available
on your PYTHONPATH. This extension simply wraps them all up as a
convenience so that only one extension needs to be listed when
@@ -16,9 +13,8 @@ initiating Markdown. See the documentation for each individual
extension for specifics about that extension.
In the event that one or more of the supported extensions are not
-available for import, Markdown will simply continue without that
-extension. If you would like to be notified of such failures,
-you may set Python-Markdown's logger level to "WARN".
+available for import, Markdown will issue a warning and simply continue
+without that extension.
There may be additional extensions that are distributed with
Python-Markdown that are not included here in Extra. Those extensions
@@ -36,6 +32,7 @@ import markdown
extensions = ['fenced_code',
'footnotes',
'headerid',
+ 'def_list',
'tables',
'abbr',
]