I want to use markdown with django.
I want to allow use bold and strike tags. Others don't convert.
Please teach me.
feedback
|
|
Django supports Markdown, but you'll need to install the Python package: http://docs.djangoproject.com/en/1.3/ref/contrib/markup/ | |||
|
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) | |||
|
feedback
|