CKEditor 在格式下拉列表中更改名称和标签
从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通常,您可以使用配置选项“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.
如果您使用
replace
方法,您的代码可能如下所示:我找不到有关“name”参数的任何文档,只是猜测它。
If you are using the
replace
method, your code can look like this:I couldn't find any documentation on the "name" parameter and just guessed it.