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
   })