docs: keep 'Why omadia?' capability labels on one line#408
Merged
Conversation
The GitHub table auto-layout starved the narrow "Capability" column, wrapping labels right after the emoji. Make each label non-breaking ( ) so the column sizes to its longest entry and every row stays on a single clean line. Co-Authored-By: Claude Opus 4.8 <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.
What
The "Capability" column in the Why omadia? table rendered too narrow on GitHub — labels wrapped right after the emoji (e.g. "Privacy Shield" broke onto a second line), which looked cluttered.
Why
GitHub renders Markdown tables with auto layout: column widths derive from content. The long prose in the "What you get" column starved the label column, so its short labels were allowed to wrap.
Fix
Make each capability label non-breaking by joining its tokens with
. The column now sizes to its longest label and every row stays on one clean line. No content or wording changes — layout/readability only.🤖 Generated with Claude Code