Skip to content
Snippets Groups Projects
Commit c0fea608 authored by Tim Steiner's avatar Tim Steiner
Browse files

Limit the types of tags allowed in TinyMCE

parent 4ad92b52
No related branches found
No related tags found
No related merge requests found
......@@ -8,5 +8,10 @@ tinyMCE.init({
theme_advanced_buttons1 : "bold, italic, underline, sub, sup, spellchecker", //, crosslistings",
theme_advanced_buttons2 : "",
theme_advanced_buttons3 : "",
noneditable_noneditable_class : "mceNonEditable"
noneditable_noneditable_class : "mceNonEditable",
valid_elements : ""
+ "-strong/-b,"
+ "-em/-i,"
+ "-sub,"
+ "-sup"
});
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment