From b9adaf9cfcb03e629fa58cba11cf3d011e7504ce Mon Sep 17 00:00:00 2001 From: Tim Steiner <tsteiner2@unl.edu> Date: Thu, 25 Oct 2007 20:03:29 +0000 Subject: [PATCH] Reduce the number of html entity encodings that tiny mce does --- document_root/javascript/mce.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/document_root/javascript/mce.js b/document_root/javascript/mce.js index d0663110..d8975099 100644 --- a/document_root/javascript/mce.js +++ b/document_root/javascript/mce.js @@ -3,6 +3,7 @@ tinyMCE.init({ theme : "advanced", plugins : "spellchecker",//, crosslistings, noneditable", editor_selector : "mceEditor", + entity_encoding : "raw", theme_advanced_toolbar_location : "top", theme_advanced_toolbar_align : "left", theme_advanced_buttons1 : "bold, italic, underline, sub, sup, spellchecker", //, crosslistings", @@ -13,5 +14,6 @@ tinyMCE.init({ + "-strong/-b," + "-em/-i," + "-sub," - + "-sup" + + "-sup," + + "br" }); \ No newline at end of file -- GitLab