撇号CKEditor表格单元合并问题

时间:2017-12-06 15:53:26

标签: javascript html ckeditor apostrophe-cms

在我使用合并单元格粘贴表格(但在手动创建它时也会发生这种情况)的撇号富文本小部件中,它开始很好:

Freshly pasted table

但重新加载后,colspans消失了:

enter image description here

有没有办法解决它?

1 个答案:

答案 0 :(得分:2)

尝试将项目级colspan中的apostrophe-rich-text-widgets属性列入白名单index.js module.exports = { sanitizeHtml: { allowedAttributes: { 'td': ['colspan'] } } };

public static void add(String word){
    int position = hashFunction(word);
    if(array[position] == null){
        array[position] = new Node(word, null);
    }else{
        Node newHead = new Node(word, array[position]);
        array[position] = newHead;
    }
}