Disable escaping html
I'm using SyntaxHighlighter Evolved to highlight code examples. E.g.
[csharp]
string s = "text";
Listint numbers = new Listint();
[/csharp]
When I first save it, it's ok, but when editing wordpress changes the text to
[csharp]
string s = quot;textquot;;
Listlt;intgt; numbers = new Listlt;intgt;();
[/csharp]
After second edit it becomes
[csharp]
string s = amp;quot;textamp;quot;;
Listamp;lt;intamp;gt; numbers = new Listamp;lt;intamp;gt;();
[/csharp]
How do I disable escaping? I want the content to be exactly what I type.
Topic plugin-syntaxhighlighter escaping editor Wordpress
Category Web