(js) Disable HTML entities in CKEditor

pull/233/head
Francis Lachapelle 2016-12-06 10:07:39 -05:00
parent e053f12e78
commit 0038e4bc60
1 changed files with 1 additions and 0 deletions

View File

@ -22,6 +22,7 @@ CKEDITOR.editorConfig = function( config ) {
config.enterMode = CKEDITOR.ENTER_BR;
config.tabSpaces = 4;
config.allowedContent = true; // don't filter tags
config.entities = false;
// Disables the built-in words spell checker if browser provides one. Defaults to true.
// http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-disableNativeSpellChecker