Skip to content

Commit f64a4e5

Browse files
authored
Remove emojis from section headers in markdown
1 parent 56ccce5 commit f64a4e5

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

scripts/lib/markdown-generator.mjs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ ${kindSections}`;
163163
// Generate footer with cross-links
164164
const footer = `---
165165
166-
*Want to see the latest OS releases? Check out the [Changelogs](/changelogs) page. For announcements and deep dives, read our [Blog](/blog).*
166+
*Want to see the latest OS releases? Check out the [Changelogs](/changelogs). For announcements and deep dives, read our [Blog](/blog).*
167167
168168
*This report was automatically generated from [todo.projectbluefin.io](https://todo.projectbluefin.io).*
169169
@@ -223,7 +223,7 @@ export function generateCategorySectionWithSubsections(
223223
// Planned Work subsection (always show, with ChillOps if empty)
224224
if (planned.length > 0) {
225225
sections.push(
226-
`#### 📋 Planned Work\n\n${formatItemList(planned, displayedUrls)}`,
226+
`#### Planned Work\n\n${formatItemList(planned, displayedUrls)}`,
227227
);
228228
} else {
229229
sections.push(`#### 📋 Planned Work\n\n> Status: _ChillOps_`);
@@ -232,7 +232,7 @@ export function generateCategorySectionWithSubsections(
232232
// Opportunistic Work subsection (always show, with ChillOps if empty)
233233
if (opportunistic.length > 0) {
234234
sections.push(
235-
`#### Opportunistic Work\n\n${formatItemList(opportunistic, displayedUrls)}`,
235+
`#### Opportunistic Work\n\n${formatItemList(opportunistic, displayedUrls)}`,
236236
);
237237
} else {
238238
sections.push(`#### ⚡ Opportunistic Work\n\n> Status: _ChillOps_`);
@@ -385,7 +385,7 @@ function generateUncategorizedSection(items) {
385385
return `- ${title} by [@\u200B${author}](https://github.com/${author}) in [#${number}](${url})`;
386386
});
387387

388-
return `## 📋 Other\n\n${lines.join("\n")}`;
388+
return `## Other\n\n${lines.join("\n")}`;
389389
}
390390

391391
/**
@@ -486,7 +486,7 @@ function generateContributorsSection(contributors, newContributors) {
486486

487487
// Section 1: New Contributors (highlighted, shown first)
488488
if (newContributors.length > 0) {
489-
section += `## 🌟 New Contributors\n\nWelcome to our new contributors!\n\n`;
489+
section += `## New Contributors\n\nWelcome to our New Lights!\n\n`;
490490
section += `<div style={{ display: 'grid', gridTemplateColumns: 'repeat(2, 1fr)', gap: '1.5rem', marginBottom: '2rem' }}>\n\n`;
491491

492492
const newContributorCards = newContributors
@@ -501,8 +501,8 @@ function generateContributorsSection(contributors, newContributors) {
501501
}
502502

503503
// Section 2: All Contributors (without highlight)
504-
section += `## 👥 Contributors\n\n`;
505-
section += `Thank you to everyone who contributed this period!\n\n`;
504+
section += `## Contributors\n\n`;
505+
section += `Thank you to our continuing contributors!\n\n`;
506506
section += `<div style={{ display: 'grid', gridTemplateColumns: 'repeat(2, 1fr)', gap: '1.5rem', marginBottom: '2rem' }}>\n\n`;
507507

508508
const allContributorCards = contributors

0 commit comments

Comments
 (0)