Open
Conversation
Anchor.box: BBox is replaced by Anchor.boxes: tuple[BBox, ...], allowing a single anchor to cover several visual lines (e.g. a full sentence that wraps across lines in a two-column layout). - annotate() serialises multi-box anchors as semicolon-separated groups in data-bbox; single-box output is unchanged, so the golden file is valid - strip() regex updated to parse the new format - _collect_overlapping_anchors extends found_locations with all boxes - bbox_alignment sorting key uses boxes[0] for reading-order stability - All tests updated to use the new boxes= keyword Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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
Anchor.box: BBoxwithAnchor.boxes: tuple[BBox, ...], allowing a single anchor to cover several visual lines (e.g. a sentence that wraps across lines in a two-column layout)annotate()serialises multi-box anchors as semicolon-separated groups indata-bbox; single-box output is byte-for-byte identical to before, so the regression golden file is unchangedstrip()regex updated to parse the new format_collect_overlapping_anchorsnow extendsfound_locationswith all boxes from a matching anchorbbox_alignmentsorting key usesboxes[0]for reading-order stabilityboxes=keywordTest plan
uv run pytestpasses (56 tests)uv run ruff checkpasses🤖 Generated with Claude Code