We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b57a619 commit 10e53f0Copy full SHA for 10e53f0
apps/common/handle/impl/table/xls_parse_table_handle.py
@@ -78,6 +78,6 @@ def get_content(self, file):
78
for row in data:
79
# 将每个单元格中的内容替换换行符为 <br> 以保留原始格式
80
md_table += '| ' + ' | '.join([str(cell).replace('\n', '<br>') if cell else '' for cell in row]) + ' |\n'
81
- md_tables += md_table + '\n\n'
+ md_tables += md_table + '\n\n'
82
83
return md_tables
0 commit comments