Skip to content
chrisdev edited this page Jul 6, 2012 · 3 revisions
 pip install django-markitup

Add 'markitup' to your INSTALLED_APPS setting.

Add the following to local settings

 MARKITUP_SET = 'markitup/sets/markdown'
 MARKITUP_SKIN = 'markitup/skins/markitup' 
 MARKITUP_FILTER = ('markdown.markdown', {'safe_mode': True})

You need to use the AJAX-based preview fro the admin widget

 url(r'^markitup/', include('markitup.urls')) in your root URLconf.
Clone this wiki locally