From 93e777bd7cafda5bded49f3c33707f73f4bad814 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Tue, 3 Oct 2023 17:37:54 -0700 Subject: [PATCH] chore: code cleanup --- .eleventy.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.eleventy.js b/.eleventy.js index b6055027..65d99415 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -91,14 +91,6 @@ module.exports = function (eleventyConfig) { if (tagString) tags[url] = tagString }) } - if (item.data.articles) { - item.data.articles.forEach((article) => { - const tagString = [...new Set(article.tags.map((tag) => tagAliases[tag.toLowerCase()]))] - .join(' ') - .trim() - if (tagString) tags[article.url] = tagString - }) - } }) return tags })