@@ -571,7 +571,7 @@ class TableCellMatcher:
# 🎯 策略 1: 数量相等,简单 1:1 映射
if len(html_rows) == len(grouped_boxes):
for i in range(len(html_rows)):
- mapping[i] = grouped_boxes[i]
+ mapping[i] = [i]
return mapping
# 🎯 策略 2: 第一遍 - 基于内容精确匹配(使用预处理后的组)