Hi, I just got a wysiwyg editor to work in my forms, but then I noticed that HTML is autoescaped, so I can't really use it.
What should I use in order to allow users to use a wysiwyg editor to input text and then show it with the same formatting on the webpage? By default all the entered text is unreadable when read from the database. Turning autoescape off doesn't seem like a good idea. If I should turn autoescape off, how could I do it for a form like here, the autoescape tags didn't work(?): <form action="." method = "POST"> <table> <tr><th>Title:</th><td>{{ form.title }}</td></tr> <tr><th>Explanation:</th> <td> {{ form.explanation }} </td> <script type="text/javascript"> CKEDITOR.replace( "explanation" ); </script> </tr> </table> <p><input type="submit" value="Submit"></p> </form> -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.