Skip to content

Commit

Permalink
Patch
Browse files Browse the repository at this point in the history
  • Loading branch information
VikParuchuri committed May 3, 2024
1 parent 9f043f1 commit 4786f17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion marker/equations/equations.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def find_equation_blocks(page, processor):
if region_idx not in insert_points:
# Insert before the block if line is at the beginning of the block, otherwise after the block
if line_idx <= len(block.lines) // 2:
insert_points[region_idx] = (block_idx, line_idx)
insert_points[region_idx] = block_idx
else:
insert_points[region_idx] = block_idx + 1

Expand Down

0 comments on commit 4786f17

Please sign in to comment.