3

我正在尝试在 ckeditor 中更改我的 format_tags 列表,以便它在列表中没有预格式化和地址,但是如果我尝试输入:

CKEDITOR.config.format_tags = 'p;h1;h2;h3;h4;h5;h6;';

进入我的 config.js,没有任何反应——列表保持不变。我在这里错过了什么吗?

4

2 回答 2

6

事实证明,您需要将其添加到 editorConfig:

CKEDITOR.editorConfig = function( config ) {
    config.format_tags = 'p;h1;h2;h3;h4;h5;h6;div';
};
于 2012-12-21T11:22:18.833 回答
0

如果您不想使用该文件config.js(无论出于何种原因),您也可以这样做:

 CKEDITOR.replace( 'idofyourtextarea', {
    language: 'your_language', //for example 'es'
    height: 200,
    width: 300,
    format_tags: 'h1;h2;h3;h4;div' // <---here set the format tag
});
于 2017-07-20T10:40:22.807 回答