是否有人建议使用WYSIWYG模块为Drupal中的CKEeditor设置自定义配置。
我正在寻找的最终结果是启用Tableresize插件并清除表默认值(边框/宽度等)。
答案 0 :(得分:0)
这不是解决问题的好方法,但它对我有用。 在文件wysiwyg \ editors \ ckeditor.inc中更改此
if (!empty($extra_plugins)) {
$settings['extraPlugins'] = implode(',', $extra_plugins);
}
到
$extra_plugins[] = 'tableresize';
if (!empty($extra_plugins)) {
$settings['extraPlugins'] = implode(',', $extra_plugins);
}
答案 1 :(得分:0)
在 Drupal 中,我们可以安装主题, 扩展 - 安装新模块 您可以通过 URL 安装两天或通过上传 tar.gz 文件您可以安装 CKE 编辑器