From 5a54d4c9ef29145dc360249d9193b0925f02235b Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Mon, 30 Oct 2023 10:40:20 -0700 Subject: [PATCH] chore: restore link data --- .eleventy.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.eleventy.js b/.eleventy.js index 11e21fb4..63417b22 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -158,6 +158,14 @@ module.exports = function (eleventyConfig) { if (tagString) tags[url] = tagString }) } + if (item.data.links) { + item.data.links.forEach((link) => { + const tagString = [...new Set(link.tags.map((tag) => tagAliases[tag.toLowerCase()]))] + .join(' ') + .trim() + if (tagString) tags[link.url] = tagString + }) + } }) return tags })