当我切换到源视图/从源视图切换时,CKEditor 正在剥离 div 类属性。
这是配置:
$('.cke-editor-restrictive').ckeditor({
extraAllowedContent: [
"*[class,id]",
"a[*]",
"img[*]",
"strong", "em", "small",
"u", "s", "i", "b",
"p", "blockquote[class,id]",
"div[class,id,data-href]",
"ul", "ol", "li",
"br", "hr",
"h1", "h2", "h3", "h4", "h5", "h6",
"script[src,charset,async]",
"iframe[*]", "embed[*]", "object[*]",
"cite", "mark", "time",
"dd", "dl", "dt",
"table", "th", "tr", "td", "tbody", "thead", "tfoot"
].join("; ")
})
以及全局 CKEditor 配置:
CKEDITOR.editorConfig = function(config) {
config.extraPlugins = 'mediaembed,codemirror,autosave';
config.codemirror = { ... };
config.toolbar = [['Bold', 'Italic', 'Underline', "RemoveFormat"], ['NumberedList', 'BulletedList', 'Blockquote'], ['Link', 'Unlink', 'Image', 'MediaEmbed'], ['Find', 'Paste'], ['Source', 'Maximize']];
config.bodyClass = 'ckeditor-body';
config.contentsCss = "/assets/application.css";
config.baseHref = "http://www.website.org/";
config.forcePasteAsPlainText = true;
};
我错过了什么?我已经阅读了允许内容规则的文档,看起来我没有做错任何事情。即使我将规则更改为div[*]
它会删除课程。