Skip to content

Commit 10e53f0

Browse files
committed
feat: 高级编排支持文件上传(WIP)
1 parent b57a619 commit 10e53f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/common/handle/impl/table/xls_parse_table_handle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,6 @@ def get_content(self, file):
7878
for row in data:
7979
# 将每个单元格中的内容替换换行符为 <br> 以保留原始格式
8080
md_table += '| ' + ' | '.join([str(cell).replace('\n', '<br>') if cell else '' for cell in row]) + ' |\n'
81-
md_tables += md_table + '\n\n'
81+
md_tables += md_table + '\n\n'
8282

8383
return md_tables

0 commit comments

Comments
 (0)