release: prepare v0.7.0 - Split Table Merging Feature enhancement#72
Merged
AdemBoukhris457 merged 1 commit intomainfrom Nov 1, 2025
Merged
release: prepare v0.7.0 - Split Table Merging Feature enhancement#72AdemBoukhris457 merged 1 commit intomainfrom
AdemBoukhris457 merged 1 commit intomainfrom
Conversation
Add split table merging feature for automatic detection and merging of tables spanning multiple pages.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR prepares the release of v0.7.0, which introduces automatic split table detection and merging capabilities. The release adds a feature that automatically detects and merges tables split across page boundaries, along with documentation enhancements and visualizations.
Release Highlights
Split table merging
Documentation
Changes Included in v0.7.0
Code changes
SplitTableDetectorclass with detection logicStructuredPDFParserwith split table merging parameters:merge_split_tables(default:False)bottom_threshold_ratio,top_threshold_ratiomax_gap_ratio,column_alignment_tolerancemin_merge_confidenceDocumentation
split-table-merging.md)Recent Merge Requests Included
This release incorporates the following merge requests:
Breaking Changes
None. This release is backward compatible. The split table merging feature is opt-in (default
merge_split_tables=False) and does not affect existing functionality.Release Notes
v0.7.0 adds automatic split table detection and merging. The parser can detect tables split across pages and merge them into single images for improved extraction.
The feature uses a two-phase approach: proximity detection filters candidate pairs, and structural validation confirms matches using computer vision. It includes configurable thresholds, confidence scoring, and fallbacks for borderless tables.
Documentation includes interactive Mermaid diagrams and a step-by-step narrative explaining the process. The feature is disabled by default and can be enabled via
merge_split_tables=True.Version bump:
0.6.2→0.7.0