从CKEditor中删除自动添加的CSS样式

时间:2013-07-02 14:39:56

标签: combobox styles ckeditor config

我的问题是CK编辑器正在我的主样式表(在父页面中)检测并添加css类,这导致样式组合在很长的列表中显示不必要和不需要的样式。

我想删除自动添加到stylescombo的样式。

我希望CK Editor只显示我在配置中定义的样式,而不显示默认或父样式。

我尝试过文档和S.O.的各种技术,但它似乎没有用。

CKEDITOR.editorConfig = function (config) {

// I thought this is how you use the stylescombo plugin but it does nothing
config.stylesSet = 'custom:/ckeditor/styles.js';
config.stylesCombo_stylesSet = 'custom:/ckeditor/styles.js';

//I want only this style to display in the Styles combo.
//This does get added, but with all the other junk styles I do not want. 
config.stylesSet = [
{ name: 'Bolder', element: 'span', attributes: { style: 'font-weight:bolder'} }
];

};

我正在使用CK Editor 4和stylescombo插件。

1 个答案:

答案 0 :(得分:1)

显然你错误地在你的构建中包含了stylesheetparser插件,所以这可能有所帮助:

config.removePlugins = 'stylesheetparser';

或者你可以在没有这个插件的情况下构建一个新的CKEditor包。