我写了一个使用allowedContent配置选项的问题。 我用这个选项设置了我的ckeditor的实例:
allowedContent: 'p; strong; em; u; s; sub; sup; ul; ol; li; blockquote; a [!href, title, target, rel]; hr; h2; h3; pre; img [!src, alt, height, width, title, id];',
我如何允许插入" class" img标签的属性?在我从HTML读取的html代码中我有这个:
<img alt="xx" width="100" height="100" src="yyy" class="myclass" />
但是当我将它加载到ckeditor类时,属性被剥离。
我已经尝试了
img [!src, alt, height, width, title, class, id]
和
img (cke-xyz) [!src, alt, height, width, title, id]
但不能工作。
有什么想法吗?
由于
答案 0 :(得分:0)
如果您想允许特定的类名:
img(classname1, classname2)[attr1, attr2]
或者如果你想允许所有课程:
img(*)[attr1, attr2]
在文档中阅读更多内容:Allowed Content Rules。