chore: code cleanup

This commit is contained in:
Cory Dransfeldt 2023-10-03 17:37:54 -07:00
parent ba436596b5
commit 93e777bd7c

View file

@ -91,14 +91,6 @@ module.exports = function (eleventyConfig) {
if (tagString) tags[url] = tagString 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 return tags
}) })