Skip to content

Commit 2957539

Browse files
committed
fix: enhance category header formatting in generate-readme.js
This commit improves the visual presentation of category headers in the generate-readme.js file by replacing the standard header bullet with a styled bullet point. This change aims to enhance the readability and aesthetic of the generated README sections. Changes made: - Updated category header formatting to use a styled bullet point. No functional code changes were made.
1 parent 31119be commit 2957539

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/generate-readme.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ handlebars.registerHelper("render-section", function (items, options) {
9595
result += "\n";
9696
}
9797

98-
result += `### ${category}\n\n`;
98+
result += `### • ${category}\n\n`;
9999

100100
// Sort items with hot entries first, then alphabetically within each group
101101
const sortedItems = groupedItems[category].sort((a, b) => {

0 commit comments

Comments
 (0)