这是我的配置
new MediumEditor(".editor", {
buttons: ['italic', 'bold', 'underline', 'anchor', 'unorderedlist', 'quote'],
paste: {
// This example includes the default options for paste, if nothing is passed this is what it used
forcePlainText: false,
cleanPastedHtml: true,
cleanReplacements: [],
cleanAttrs: ['id', 'style'],
cleanTags: ['a', 'br']
}
});
当我粘贴一些html文本时,我希望删除id
和style
个attrs,以及a
和br
标记。但那没有发生,请参阅plunker here
我做错了吗?
答案 0 :(得分:1)
看起来这是你传入的选项名称:cleanPastedHtml
vs cleanPastedHTML
的驼峰套管之间的拼写错误。
如果您使用cleanPastedHTML
,我相信这会解决您的问题。