CKEditor unwanted   characters

后端 未结 10 890
误落风尘
误落风尘 2020-12-02 08:13

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

10条回答
  •  难免孤独
    2020-12-02 08:32

    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;
    

提交回复
热议问题