Disable escaping html

I’m using SyntaxHighlighter Evolved to highlight code examples.
E.g.

string s = "text";
List<int> numbers = new List<int>();

When I first save it, it’s ok, but when editing wordpress changes the text to

string s = "text";
List<int> numbers = new List<int>();

After second edit it becomes

string s = "text";
List<int> numbers = new List<int>();

How do I disable escaping? I want the content to be exactly what I type.

3 Answers
3

I just installed SyntaxHighlighter Evolved, and while testing on an existing post I was dismayed to find that all the quotes " had been converted to " (the single quotes were fine). I was using the HTML editor.

In case you are also in this position, I found that it’s just the post preview that is escaped – when you Publish it appears fine.

Leave a Comment