1、English name这块,除了中文,数字不能用,其他都可以

2、blue空格
This commit is contained in:
2026-02-13 11:44:31 +08:00
parent 10348d1e75
commit a2497a8885
11 changed files with 68 additions and 72 deletions

View File

@@ -1974,6 +1974,7 @@ export default {
});
},
async saveTable(content) {
const cleanTableData = (tableList) => {
if (tableList.length == 0) {
return [];
@@ -1981,7 +1982,8 @@ export default {
// 定义清理函数:去掉所有 br 标签和 TinyMCE 占位符
const cleanText = (text) => {
if (!text) return "";
return text.replace(/<br\s*\/?>/gi, '').trim();
// return text.replace(/<br\s*\/?>/gi, '').trim();
return text
};
// 1. 获取处理后的干净表头