use markdown with django
Install markdown and make sure it is in your python path.
http://www.freewisdom.org/projects/python-markdown/Installation
Include 'django.contrib.markup' in INSTALLED_APPS in your settings.py file.
1 2 ..load 3 {% load markup %} 4 5 ..then use 6 {{ post.body|markdown }}