Turn Off CKEditor's Auto Correct Settings
Does anybody know of a way to turn off CKEditor's HTML tidying function? I know CKEditor has some pretty strict HTML rewriting rules in place, but I am wondering if there is a way to control those so pages being edited don't get messed up when the HTML does not follow CKEditor's concept of valid code?
Is there a plug开发者_Go百科in to help, maybe, that can help to add exceptions?
You can use the config.allowedContent
in your config.js file like this:
config.allowedContent = true;
Check documentation
精彩评论