table: stack vertically-merged rows into wrapped cell height; fixes #261 - #411
Merged
Conversation
Coverage Report for CI Build 29704631714Coverage remained the same at 100.0%Details
Uncovered ChangesNo uncovered changes found. Coverage RegressionsNo coverage regressions found. Coverage Stats
💛 - Coveralls |
jedib0t
force-pushed
the
fix-261-automerge-wrap
branch
from
July 19, 2026 21:35
0fddb63 to
b49decf
Compare
|
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.



When a column has both AutoMerge and WidthMax, a merged cell rendered blank but still forced the row to the pre-merge wrapped height, leaving trailing blank lines below the merged content.
Body rows spanned by the same merged cell are now rendered as one shared block so the differing columns slot into the merged cell's wrapped height instead of leaving blanks below it. The block is the full span of a merged cell, and any inner merged column does its own vertical merge within it. This is gated to the plain case (no row separators, auto-index, pager, or per-row coloring) and only kicks in when the stacked rows each fit on a single line, so it never changes any other layout; everything else falls back to trimming the trailing blank lines.