tags in CKEditor 3.0
Is there a possibility to turn off the automatic enclosing of all written content within
in CKEditor 3.x?I tried
CKEDITOR.con
MAKE THIS YOUR config.js file code
CKEDITOR.editorConfig = function( config ) {
// config.enterMode = 2; //disabled completely
config.enterMode = CKEDITOR.ENTER_BR // pressing the ENTER KEY input
config.shiftEnterMode = CKEDITOR.ENTER_P; //pressing the SHIFT + ENTER KEYS input
config.autoParagraph = false; // stops automatic insertion of
on focus
};