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": {