これは私の設定です
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
a
br
私は何か間違ったことをしていますか?