Activating the editor
Configuration
Output tags filtering
- settings option:
CKEDITOR.config.allowedContent
- allow or disallow HTML markup filtering
- example:
allowedContent: 'a[!href]; ul; li{text-align}(someclass)'
Kick off htmlentities!
All (?) non-ASCII chars are converted to HTML entities by default. If it is not your desire, you can turn it off with:
config.entities = false; config.entities_latin = false; config.entities_greek = false;
Newline (enter) mode
- how to interpret the ENTER key
config.enterMode = CKEDITOR.ENTER_BR;
- possibilities: BR, P, DIV