1
這是我的配置中編輯粘貼選項不工作
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
我做錯了什麼?
看起來像你打開一個針對中等編輯回購的問題在這裏:https://github.com/yabwe/medium-editor/issues/881它看起來像這只是一個「cleanPastedHtml」和「cleanPastedHTML之間的拼寫錯誤「對嗎? –