Skip to content

Instantly share code, notes, and snippets.

@ryandemmer
Created October 7, 2014 12:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryandemmer/477ccdf27f538dc29889 to your computer and use it in GitHub Desktop.
Save ryandemmer/477ccdf27f538dc29889 to your computer and use it in GitHub Desktop.
Convert braces to named entities
(function() {
tinyMCE.onAddEditor.add(function(mgr, ed) {
ed.onPostProcess.add(function(ed, o) {
o.content = o.content.replace(/\{/g, '{').replace(/\}/g, '}');
});
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment