我需要将目录链接从word(或word生成的html)复制到ckeditor中 但是事实证明ckeditor(4.13)会自动转换具有下划线样式的span(msohyperlink),如下所示:
<u><a href="#_Toc25174546" target="_blank">Heading1</a></u><br />
但是我不希望链接上有任何样式
反正我可以在粘贴上将其剥离吗?
我当前的config.js
config.allowedContent =
'h1 h2 h3 h4 strong u strike sub sup blockquote em ul ol li p iframe ;table[*]{*}(*);font[*]{*}(*);s[*]{*}(*); td[*]{*}(*); th[*]{*}(*); tr[*]{*}(*);' +
'a[!href,target,class,onclick,id](jslink);' +
'img[!src,alt,width,height];' +
'span[!class](!update,!textnote,!andy,!footnote,Underline){margin-left,margin-right,text-align};' +
'div[*]{margin-left,margin-right,text-align}(*);'
;
config.pasteFilter = 'semantic-content';
粘贴过滤器根本不起作用-ckeditor似乎以某种方式忽略了它。
请帮助,谢谢。