在我的Ckeditor配置中,我有一个自定义的allowedContent。我没有使用allowedContent:true
,因为我不想在span标记中允许style属性
所以这是我的allowedContent
allowedContent : 'span[class]; a[!href](*); caption; div; em; h1; h2; h3; h4; h5; h6; hr; i; img; li; ol; p[*]{*}; pre; strong; sub; sup; table; thead; tbody; tfoot; td; th; tr; tt; u; ul; dl; dt; dd; iframe;'
使用此配置,span标记
上不再允许样式属性问题在于我的stylesSets:
stylesSet:
- { name: "style 1", element: ['div', 'p', 'a', 'span'], attributes: { class:"display_only_in_popup" } }
- { name: "style 2", element: ['div', 'p', 'a', 'span'], attributes: { class:"blockquote" } }
- { name: "style 3", element: ['div', 'p', 'a', 'span'], attributes: { class:"note" } }
- { name: "style 4", element: ['p', 'span'], attributes: { class:"highlight" } }
- { name: "style 5", element: 'span', attributes: { class:"visuallyhidden" } }
之前,当我有allowedContent:true
时,我能够看到并使用我的所有5个样式集,但现在,出于某种原因,我只看到"样式5"在样式字段中
是否可以在不使用allowedContent:true
的情况下保留我的5个样式集?
非常感谢
答案 0 :(得分:0)
您的5个样式集似乎都使用class
属性,但您的allowedContent
规则仅允许class
元素的span
属性。
我建议将allowedContent
规则更改为:
allowedContent : '*[class]; a[!href](*); caption; div; em; h1; h2; h3; h4; h5; h6; hr; i; img; li; ol; p[*]{*}; pre; strong; sub; sup; table; thead; tbody; tfoot; td; th; tr; tt; u; ul; dl; dt; dd; iframe;'
或者如果你想更明确:
allowedContent : 'div[class]; p[class]; a[class]; span[class]; a[!href](*); caption; div; em; h1; h2; h3; h4; h5; h6; hr; i; img; li; ol; p[*]{*}; pre; strong; sub; sup; table; thead; tbody; tfoot; td; th; tr; tt; u; ul; dl; dt; dd; iframe;'
注意:我无法测试此代码,如果能够完成此任务,请在评论中告诉我。