We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9df5d26 commit 6116503Copy full SHA for 6116503
textractor/entities/table.py
@@ -933,6 +933,7 @@ def get_text_and_words(
933
for cell in sorted(row, key=lambda c: c.col_index):
934
# Siblings includes the current cell
935
if cell.siblings:
936
+ children = []
937
first_row, first_col, last_row, last_col = cell._get_merged_cell_range()
938
if (cell.col_index == first_col and cell.row_index == first_row) or config.table_duplicate_text_in_merged_cells:
939
for sib in cell.siblings:
0 commit comments