📝 Update script metadata and cheatsheet table format

This commit is contained in:
2026-04-12 00:46:41 +08:00
parent 0f268de9c9
commit 99f9a5e10a
2 changed files with 5 additions and 5 deletions

View File

@@ -42,13 +42,13 @@ async function main(): Promise<void> {
md.push("# cheatsheet");
md.push("");
md.push("| Name | Alias | URL | Description |");
md.push("| Name | Alias | Cheat Sheet | Description |");
md.push("| ----- | ----- | ----- | ----- |");
for (const meta of metas) {
md.push(
`| ${meta.name} | ${
meta.aliases ? meta.aliases : "-"
} | [${meta.name}/CHEATSHEET.md](${meta.name}/CHEATSHEET.md) | ${meta.description} |`,
} | [CHEATSHEET.md](${meta.name}/CHEATSHEET.md) | ${meta.description} |`,
);
}
md.push("");