Left-align README support block and drop top divider#247
Merged
Conversation
Removes the horizontal rule above the support block and unwraps the centered <p align="center"> so the support copy and Ko-fi button render left-aligned under the title.
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
The support block under the title rendered center-aligned with a heavy horizontal rule directly above it, making the top of the README feel cluttered. This removes that top divider and unwraps the
<p align="center">wrappers so the support copy and Ko-fi button render left-aligned under the title.Validation
Markdown-only change; rendered the README locally to confirm the support copy and button are now left-aligned and the divider above them is gone.
Linked issues
None.
Risk / rollout notes
Documentation only — no code, settings, or build changes.
Greptile Summary
This is a documentation-only change to
README.mdthat removes the horizontal rule above the Ko-fi support block and strips the<p align="center">wrappers so the support text and button render left-aligned directly under the project title.---divider that appeared immediately after the# Cotabbyheading, reducing visual clutter at the top of the README.<sub>support copy and the Ko-fi<a>/<img>tag from their<p align="center">containers, making them flow left like the rest of the prose content.Confidence Score: 5/5
Safe to merge — only two HTML wrapper tags and one horizontal rule are removed from the README, with no impact on code, configuration, or build artifacts.
The change touches a single Markdown file and removes three lines of presentational HTML along with a decorative divider. There is no logic, no configuration, and no user-facing behaviour beyond how the top of the README renders on GitHub.
No files require special attention.
Important Files Changed
---divider and unwraps<p align="center">around the Ko-fi support block, leaving content left-aligned under the title.Flowchart
%%{init: {'theme': 'neutral'}}%% flowchart TD subgraph before["Before"] direction TB A1["# Cotabby"] --> DIV["--- (removed)"] DIV --> PC1["p align=center: sub text"] PC1 --> PC2["p align=center: Ko-fi button"] PC2 --> DIV2["---"] end subgraph after["After"] direction TB A2["# Cotabby"] --> SUB["sub text (left-aligned)"] SUB --> BTN["Ko-fi button (left-aligned)"] BTN --> DIV3["---"] endReviews (1): Last reviewed commit: "Left-align README support block and drop..." | Re-trigger Greptile