TinyMCE converts <xxx> into <xxx></xxx> - how do I stop it?
Posted
by Petras
on Stack Overflow
See other posts from Stack Overflow
or by Petras
Published on 2010-04-15T04:57:27Z
Indexed on
2010/04/15
5:03 UTC
Read the original article
Hit count: 346
I can successfully save the characters < and >.
I do this with these options:
entities : """
cleanup : false
verify_html : false
So far no problems.
However, whenever I put anything between that text it gets converted into a tag:
<xxx>
converts to
<xxx></xxx>
How do I stop that?I am trying to enter sample HTML into TinyMCE so I can document some XML. There must be a standard way of doing this I imagine.
© Stack Overflow or respective owner