2

在我的 CKeditor 配置中,我有这个:

CKEDITOR.editorConfig = function( config ) {
    config.toolbar = [
        { name: 'styles', items : [ 'Format' ] },
    ]
};

我希望这个配置只显示标题 2 和标题 3,但它显示所有标题。我怎样才能做到这一点?

坦克很多。

4

1 回答 1

2

一切都在文档中描述 - 请参阅config.format_tags

例如:

config.format_tags = 'p;h2;h3;pre';
于 2013-07-13T11:31:37.763 回答