From ff9ad2627423431318fde2fa9f41bb138f8df792 Mon Sep 17 00:00:00 2001 From: benjaoming Date: Sun, 3 Feb 2013 15:07:43 +0100 Subject: [PATCH] add a few more default markdown plugins --- wiki/conf/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki/conf/settings.py b/wiki/conf/settings.py index 2dad07d3..ea081a40 100644 --- a/wiki/conf/settings.py +++ b/wiki/conf/settings.py @@ -13,7 +13,7 @@ WIKI_LANGUAGE = 'markdown' # extend the built-in editor and customize it.... EDITOR = getattr( django_settings, 'WIKI_EDITOR', 'wiki.editors.markitup.MarkItUp' ) -MARKDOWN_KWARGS = {'extensions': ['extra', 'toc'], 'safe_mode': 'replace'} +MARKDOWN_KWARGS = {'extensions': ['footnotes', 'headerid', 'extra', 'toc'], 'safe_mode': 'replace'} MARKDOWN_KWARGS.update(getattr( django_settings, 'WIKI_MARKDOWN_KWARGS', {} )) # This slug is used in URLPath if an article has been deleted. The children of the -- 2.45.2