How can I disable CKEditor to get me every time , when i don\'t want them? I\'m using CKEditor with jQuery adapter.
I don\'t want to have any
I had already had to play around with config.js, so in order to fix '?' showing up in safari I ended up with 3 lines in config.js
config.fillEmptyBlocks = function (element) { return true; // DON'T DO ANYTHING!!!!!}; config.entities = false; config.basicEntities = false;