Commit abc6fa05 by Michael J. Schultz

Markdown 2.1 compatible

parent b2e74fb5
...@@ -152,16 +152,19 @@ if 'patch' not in View.http_method_names: ...@@ -152,16 +152,19 @@ if 'patch' not in View.http_method_names:
try: try:
import markdown import markdown
if markdown.version <= '2.2':
HEADERID_EXT_PATH = 'headerid'
else:
HEADERID_EXT_PATH = 'markdown.extensions.headerid'
def apply_markdown(text): def apply_markdown(text):
""" """
Simple wrapper around :func:`markdown.markdown` to set the base level Simple wrapper around :func:`markdown.markdown` to set the base level
of '#' style headers to <h2>. of '#' style headers to <h2>.
""" """
extensions = [HEADERID_EXT_PATH]
extensions = ['markdown.extensions.headerid']
extension_configs = { extension_configs = {
'markdown.extensions.headerid': { HEADERID_EXT_PATH: {
'level': '2' 'level': '2'
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment