Update icon name in markdown table to include file extension for clarity in generated comments.

This commit is contained in:
codecalm 2025-12-23 01:51:02 +01:00
parent b92d158e78
commit 734658b279
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ function generateIconsTable(icons, type) {
const tags = data.tags || []
// Use GitHub raw file URL - GitHub Comments support external image URLs
markdown += `| <img src="${rawUrl}" width="240" height="240" alt="${iconName}" /> | \`${iconName}\` | ${category || '❌ No category'} | ${tags.join(', ') || '❌ No tags' } |\n`
markdown += `| <img src="${rawUrl}" width="240" height="240" alt="${iconName}" /> | \`${iconName}.svg\` | ${category || '❌ No category'} | ${tags.join(', ') || '❌ No tags' } |\n`
})
markdown += `\n`