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

发布于 2024-09-28 16:07:43 字数 61 浏览 4 评论 0原文

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

谢谢。

Where from can I edit the names and tags inserted when selecting an option from the Formatting drop-down in CKEDitor?

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

半岛未凉 2024-10-05 16:07:43

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

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

Usually, you can set these with the config option 'format_tags', like so:
config.format_tags = 'p;pre;h1;h2';

However, a bug exists in drupal's ckeditor.module, where this setting is being overwritten. Go to the /admin/settings/ckeditor folder in your drupal install and edit the settings there.

天涯沦落人 2024-10-05 16:07:43

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

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

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

If you are using the replace method, your code can look like this:

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

I couldn't find any documentation on the "name" parameter and just guessed it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文