Skip to content

Commit f2f33d3

Browse files
fix: ignore known badges when reading logo (#2027)
## PR Checklist - [x] Addresses an existing open issue: fixes #2022 - [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 Ignores: * Alt text of `All Contributors: \d+` * Source images from `img.shields.io` 🎁
1 parent 89be6be commit f2f33d3

File tree

2 files changed

+30
-4
lines changed

2 files changed

+30
-4
lines changed

src/options/readLogo.test.ts

+20
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,26 @@ describe(readLogo, () => {
2424
expect(logo).toBeUndefined();
2525
});
2626

27+
it("resolves undefined when the found image is an All Contributors badge", async () => {
28+
const logo = await readLogo(() =>
29+
Promise.resolve(
30+
`\n<img alt="All Contributors: 1" src="https://img.shields.io/badge/all_contributors-1-21bb42.svg" />`,
31+
),
32+
);
33+
34+
expect(logo).toBeUndefined();
35+
});
36+
37+
it("resolves undefined when the found image is a shields.io badge", async () => {
38+
const logo = await readLogo(() =>
39+
Promise.resolve(
40+
`\n<img alt="TypeScript: Strict" src="https://img.shields.io/badge/typescript-strict-21bb42.svg" />`,
41+
),
42+
);
43+
44+
expect(logo).toBeUndefined();
45+
});
46+
2747
it("parses when found in an unquoted string", async () => {
2848
const logo = await readLogo(() =>
2949
Promise.resolve(`

src/options/readLogo.ts

+10-4
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,25 @@ export async function readLogo(getReadme: () => Promise<string>) {
77
return undefined;
88
}
99

10+
const alt =
11+
/alt=['"](.+)['"]\s*src=/.exec(tag)?.[1].split(/['"]?\s*\w+=/)[0] ??
12+
"Project logo";
13+
14+
if (/All Contributors: \d+/.test(alt)) {
15+
return undefined;
16+
}
17+
1018
const src = /src\s*=(.+)['"/]>/
1119
.exec(tag)?.[1]
1220
?.split(/\s*\w+=/)[0]
1321
.replaceAll(/^['"]|['"]$/g, "");
1422

15-
if (!src) {
23+
if (!src || src.includes("//img.shields.io")) {
1624
return undefined;
1725
}
1826

1927
return {
20-
alt:
21-
/alt=['"](.+)['"]\s*src=/.exec(tag)?.[1].split(/['"]?\s*\w+=/)[0] ??
22-
"Project logo",
28+
alt,
2329
src,
2430
...readLogoSizing(src),
2531
};

0 commit comments

Comments
 (0)