Javascript CK Editor config.js不改变';t工作(基本版)

Javascript CK Editor config.js不改变';t工作(基本版),javascript,ckeditor,Javascript,Ckeditor,我在设置CKEditor时遇到问题。我设法让它在生产方面发挥作用,但现在我需要调整一些选项,如: config.entities_latin = false; (在config.js中),但它不起作用,它仍然会更改字符,如:šššššššššto&Scaron等 我尝试了:config.autoParagraph=false这也不起作用 但是,如果我从以下位置删除一些元素:config.toolbarGroups=[](此操作有效) 请注意,我必须使用基本版本(由于某些原因,标准和完整版本在服

我在设置CKEditor时遇到问题。我设法让它在生产方面发挥作用,但现在我需要调整一些选项,如:

config.entities_latin = false;
(在config.js中),但它不起作用,它仍然会更改字符,如:šššššššššto&Scaron等

我尝试了:
config.autoParagraph=false这也不起作用

但是,如果我从以下位置删除一些元素:config.toolbarGroups=[](此操作有效)

请注意,我必须使用基本版本(由于某些原因,标准和完整版本在服务器上根本不起作用,只能在本地使用):S

任何人,请帮忙。。。 这是整个config.js:

    /**
 * @license Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 * For licensing, see LICENSE.html or http://ckeditor.com/license
 */

CKEDITOR.editorConfig = function( config ) {
    // Define changes to default configuration here.
    // For the complete reference:
    config.contentsLanguage = 'hr';
    config.entities_latin = false;
    // http://docs.ckeditor.com/#!/api/CKEDITOR.config

    // The toolbar groups arrangement, optimized for a single toolbar row.
    config.toolbarGroups = [
        { name: 'document',    groups: [ 'mode', 'document', 'doctools' ] },
        { name: 'clipboard',   groups: [ 'clipboard', 'undo' ] },
        { name: 'editing',     groups: [ 'find', 'selection', 'spellchecker' ] },
        { name: 'forms' },
        { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] },
        { name: 'paragraph',   groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ] },
        { name: 'links' },
        { name: 'insert' },
        { name: 'styles' },
        { name: 'colors' },
        { name: 'tools' },
        { name: 'others' }

    ];

    // The default plugins included in the basic setup define some buttons that
    // we don't want too have in a basic editor. We remove them here.
    config.removeButtons = 'Cut,Copy,Paste,Undo,Redo,Anchor,Underline,Strike,Subscript,Superscript';

    // Let's have it basic on dialogs as well.
    config.removeDialogTabs = 'link:advanced';
};

取决于您使用的版本。尝试删除所有实体。这对我很有用,我的cke输出是100%XML兼容的

config.entities = false;
config.removePlugins = 'entities';
您可以添加
config.entities\u希腊语=false