i added markdown filter on my index page like ;
{% load markup %}
{{ post.body | markdown }}
it works correctly when i saved post with markdown tags. but if i want to edit it ; it doesn’t look like :
**bold text**
it looks like :
<strong>bold text</strong>
in my edit form. how can i fix this?
as i know ; markdown must save the text as markdown codes into db.
thank you
you need the safe filter