tags:

views:

49

answers:

1

I have two apps using the same TinyMCE textarea configurations. However, while an input in an app does output the text properly, the same input in another app does not output the text properly -it outputs the <p> <li> tags, etc.

I have exactly the same Django source code for these two different apps. As I mentioned above, two apps using the same TinyMCE textarea. How come this could happen?

+3  A: 

Make sure you are using the escape tag "safe". For example, {{value|safe}} to don't show the HTML code from TinyMCE safe.

eos87