这是我的配置
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难道我做错了什么?
最佳答案
看起来这是您输入的选项名称:骆驼套和cleanPastedHtml
之间的错别字。
如果您改用cleanPastedHTML
,我相信这可以解决您的问题。