pull/2/head
Vinayak Mehta 2018-12-13 14:36:50 +05:30
parent ff4d8ce228
commit 69136431b6
2 changed files with 7 additions and 2 deletions

View File

@ -309,7 +309,9 @@ class Lattice(BaseParser):
table = table.set_span() table = table.set_span()
pos_errors = [] pos_errors = []
for direction in self.t_bbox: # TODO: have a single list in place of two directional ones?
# sorted on x-coordinate based on reading order i.e. LTR or RTL
for direction in ['vertical', 'horizontal']:
for t in self.t_bbox[direction]: for t in self.t_bbox[direction]:
indices, error = get_table_index( indices, error = get_table_index(
table, t, direction, split_text=self.split_text, table, t, direction, split_text=self.split_text,

View File

@ -351,8 +351,11 @@ class Stream(BaseParser):
def _generate_table(self, table_idx, cols, rows, **kwargs): def _generate_table(self, table_idx, cols, rows, **kwargs):
table = Table(cols, rows) table = Table(cols, rows)
table = table.set_all_edges() table = table.set_all_edges()
pos_errors = [] pos_errors = []
for direction in self.t_bbox: # TODO: have a single list in place of two directional ones?
# sorted on x-coordinate based on reading order i.e. LTR or RTL
for direction in ['vertical', 'horizontal']:
for t in self.t_bbox[direction]: for t in self.t_bbox[direction]:
indices, error = get_table_index( indices, error = get_table_index(
table, t, direction, split_text=self.split_text, table, t, direction, split_text=self.split_text,