I\'ve just installed CKeditor rich text WYSIWYG editor on a site I\'m building and it seems to be working ok except for the fact that it inserts text into my mysql database as e
Modern templating languages tend to autoescape html input. For example, in DTL it would be displayed correctly in the template by simply using
{{ object.field_name|safe }}
This is a desired action, since user input is considered untrusted and may be considered malicious.