想保留过滤功能,只是不过滤class,所以在htmlTags里加上class,如下:
htmlTags: {
li: ['class'],
font : ['class', 'color', 'size', 'face', '.background-color'],
span : [
'class', '.color', '.background-color', '.font-size', '.font-family', '.background',
'.font-weight', '.font-style', '.text-decoration', '.vertical-align', '.line-height'
],
div : [
'class', 'align', '.border', '.margin', '.padding', '.text-align', '.color',
'.background-color', '.font-size', '.font-family', '.font-weight', '.background',
'.font-style', '.text-decoration', '.vertical-align', '.margin-left'
],
。。。。。。。。。。后面省略
===================================
其中,li是我增加的标签,其他都是原有默认的。
问题:现在,只有li的class会被屏蔽掉,其他的就没事儿……是我写的不对吗?