CKEditor在格式下拉列表中更改名称和标签

时间:2010-10-24 13:50:36

标签: drop-down-menu formatting ckeditor

从CKEDitor的格式下拉列表中选择选项时,我可以编辑插入的名称和标签吗?

谢谢。

2 个答案:

答案 0 :(得分:3)

通常,您可以使用配置选项'format_tags'来设置它们,如下所示: config.format_tags = 'p;pre;h1;h2';

但是,drupal的ckeditor.module中存在一个错误,此设置被覆盖。转到drupal安装中的/ admin / settings / ckeditor文件夹并编辑那里的设置。

答案 1 :(得分:2)

如果您使用replace方法,则代码可能如下所示:

CKEDITOR.replace(element, {
    format_small: {element: 'small', name: 'Small'},
    format_tags: 'p;h1;h2;h3;h4;h5;h6;pre;div;small'
}) ;

我找不到关于“name”参数的任何文档,只是猜到了。