I want to use markdown with django.

I want to allow use bold and strike tags. Others don't convert.

Please teach me.

link|improve this question
1  
You don't need markdown for that... – Blender May 20 '11 at 7:37
feedback

2 Answers

Django supports Markdown, but you'll need to install the Python package: http://docs.djangoproject.com/en/1.3/ref/contrib/markup/

link|improve this answer
feedback

You can take a look at markdown2 for converting text to html. But if you just want to use bold and strike, maybe you should look for using directly regex/parser.

A "secure" mode is also possible in markdown2, forcing the user to use only the official markdown syntax, with ignoring the html. (making it more secure)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.