Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 CKeditor 配置中,我有这个:
CKEDITOR.editorConfig = function( config ) { config.toolbar = [ { name: 'styles', items : [ 'Format' ] }, ] };
我希望这个配置只显示标题 2 和标题 3,但它显示所有标题。我怎样才能做到这一点?
坦克很多。
一切都在文档中描述 - 请参阅config.format_tags。
config.format_tags
例如:
config.format_tags = 'p;h2;h3;pre';