媒体编辑器粘贴选项不起作用

Medium Editor paste options not working

这是我的配置

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 文本时,我希望删除 idstyle 属性,以及 abr 标签.但这并没有发生,请参阅 plunker here

我是不是做错了什么?

看起来这是您传入的选项名称的驼峰式拼写错误:cleanPastedHtmlcleanPastedHTML

如果您改用 cleanPastedHTML,我相信这会解决您的问题。