撇号 CKEditor table 单元格合并问题
Apostrophe CKEditor table cell merging issue
在 apostrophe-rich-text 小部件中,当我将 table(但手动创建它们时也会发生)与合并的单元格粘贴时,它开始时很好:
但是重新加载后,colspans 消失了:
有什么办法可以解决吗?
尝试在您的项目级别 apostrophe-rich-text-widgets
index.js
中将 colspan
属性列入白名单
module.exports = {
sanitizeHtml: {
allowedAttributes: {
'td': ['colspan']
}
}
};
在 apostrophe-rich-text 小部件中,当我将 table(但手动创建它们时也会发生)与合并的单元格粘贴时,它开始时很好:
但是重新加载后,colspans 消失了:
有什么办法可以解决吗?
尝试在您的项目级别 apostrophe-rich-text-widgets
index.js
colspan
属性列入白名单
module.exports = {
sanitizeHtml: {
allowedAttributes: {
'td': ['colspan']
}
}
};