-
-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: remove visual underlines on badge links in README.md #1030
fix: remove visual underlines on badge links in README.md #1030
Conversation
fix: fix visual underlines on badges
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1030 +/- ##
=======================================
Coverage 94.15% 94.15%
=======================================
Files 95 95
Lines 5454 5454
Branches 436 436
=======================================
Hits 5135 5135
Misses 318 318
Partials 1 1
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice, thanks! 💯
I'm bummed to not be able to split them across lines for readability ... but if it comes down to that or removing the underline, removing the underline wins.
@all-contributors please add @5hraddha for code.
|
I've put up a pull request to add @5hraddha! 🎉 I couldn't determine any contributions to add, did you specify any contributions? |
🎉 This is included in version v1.43.4 🎉 The release is available on: Cheers! 📦🚀 |
Adds @5hraddha as a contributor for code. This was requested by JoshuaKGoldberg [in this comment](#1030 (comment)) --------- Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>
Yeah, it's a little weird in terms of readability. I agree with you, @JoshuaKGoldberg. |
No worries. Sure, I could work on that. Thank you! |
<!-- 👋 Hi, thanks for sending a PR to create-typescript-app! 💖. Please fill out all fields below and make sure each item is true and [x] checked. Otherwise we may not be able to review your PR. --> ## PR Checklist - [x] Addresses an existing open issue: fixes #1032 - [x] That issue was marked as [`status: accepting prs`](https://github.com/JoshuaKGoldberg/create-typescript-app/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22) - [x] Steps in [CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/create-typescript-app/blob/main/.github/CONTRIBUTING.md) were taken ## Overview This PR ports README.md badge underlines fix (in #1030) to templates that generates the badges in README.md files and its associated test. 💖
PR Checklist
status: accepting prs
Overview
This PR removes the visual underlines on badge links in README.md, introduced by the recent GitHub changes (to render the underlines by default). The problem was that the
<link>
and<img>
tags were on separate lines, thus creating unnecessary spaces in between. These spaces were rendering empty links with an underline. 💖