all repos — website @ 077c8e41d82557bbfc20e30915c92811d25f516a

My website

sort tags
Alan Pearce alan@alanpearce.eu
Mon, 15 Apr 2024 23:13:58 +0200
commit

077c8e41d82557bbfc20e30915c92811d25f516a

parent

40a27d2ba2988db453b0b4ba2f93dae8e4d99aab

1 files changed, 5 insertions(+), 2 deletions(-)

jump to
M src/templates.tssrc/templates.ts
@@ -111,7 +111,7 @@ $(".h-entry .e-content").html(content);   const categories = $(".h-entry .p-categories");
   const cat = categories.find(".p-category").parentsUntil(categories);
   cat.remove();
-  for (const tag of file.taxonomies["tags"]) {
+  for (const tag of file.taxonomies["tags"].sort()) {
     categories.append(
       cat
         .clone()
@@ -230,7 +230,10 @@ }   await fs.mkdir("public/tags", { recursive: true });
   tasks.push(async () => {
     log.debug("Rendering tags page to public/tags/index.html");
-    return fs.writeFile("public/tags/index.html", await renderTags([...tags]));
+    return fs.writeFile(
+      "public/tags/index.html",
+      await renderTags([...tags].sort()),
+    );
   });
   for (const tag of tags) {
     log.debug(`Processing tag ${tag}`);