I just installed django-tinymce however when I display the content I'm getting HTML format. How can I fix this?
Something <p>Some <strong>random </strong>text 123 123 123 <strong><br /></strong></p> admin
Use safe filter. For example:
{{ your_html|safe }}
By default Django template engine escapes HTML to prevent XSS attacks. By using this filter you say the HTML is safe and can be rendered normally.
2.1m questions
2.1m answers
60 comments
57.0k users