我希望能够为添加到Drupal中的body字段的图像添加一个类。
我希望为用户提供尽可能简单的内容,这样他们就不必添加类等。理想情况下,他们只需单击工具栏中的图像按钮,粘贴URL或上传图像并设置对齐左或右: Image properties for adding images in CKeditor
我尝试过多种选择,包括:CKEditor adding class to img tag但我无法解决任何问题。
CKEditor的路径是CDN //cdn.ckeditor.com/4.5.4/full-all
我希望我们使用自己的SCSS使图像在桌面上向左或向右浮动,并以小断点为中心。
文本格式为“过滤HTML”。
有什么方法可以让它发挥作用吗?
非常感谢
更新
因为我正在使用CKEditor CDN,所以我将以下内容添加到我当地的'ckeditor.config.js'文件中
config.extraPlugins = 'image, dialog, dialogui';
// Enable local "imagetoolbar" plugin from /myplugins/imagetoolbar/ folder.
CKEDITOR.plugins.addExternal( 'image', '/plugins/image/' 'plugin.js' );
CKEDITOR.plugins.addExternal( 'dialog', '/plugins/dialog/' 'plugin.js' );
CKEDITOR.plugins.addExternal( 'dialogui', '/plugins/dialog/' 'plugin.js' );
// extraPlugins needs to be set too.
CKEDITOR.replace( 'news', {
extraPlugins: 'image, dialog, dialogui'
} );
我复制过的例子有'news'作为CKEDITOR.replace,我肯定是错的,这应该是什么? https://www.pluginsforckeditor.com/Tutorials/149/How-to-add-a-plugin-to-CKEditor/en/n149.aspx