From 69a3c00fb562af4529c23ef852509a49eed48d16 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Mon, 26 Feb 2024 12:48:23 -0800 Subject: [PATCH] fix: duplicate whitespace in tag map output --- config/collections/index.js | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config/collections/index.js b/config/collections/index.js index da234208..acc15b61 100644 --- a/config/collections/index.js +++ b/config/collections/index.js @@ -22,7 +22,7 @@ export const tagMap = (collection) => { const tagString = [...new Set(post.data.tags.map((tag) => tagAliases[tag.toLowerCase()]))] .join(' ') .trim() - if (tagString) tags[url] = tagString + if (tagString) tags[url] = tagString.replace(/\s+/g,' ') }) } if (item.data.links) { @@ -31,7 +31,7 @@ export const tagMap = (collection) => { .map((tag) => tagAliases[tag.toLowerCase()]) .join(' ') .trim() - if (tagString) tags[link.url] = tagString + if (tagString) tags[link.url] = tagString.replace(/\s+/g,' ') }) } }) diff --git a/package.json b/package.json index 72cd8eea..75d82c41 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "6.5.12", + "version": "6.5.13", "description": "The source for my personal site. Built using 11ty and hosted on Netlify.", "type": "module", "scripts": {