fix: duplicate whitespace in tag map output
This commit is contained in:
parent
b90c85d369
commit
69a3c00fb5
2 changed files with 3 additions and 3 deletions
|
@ -22,7 +22,7 @@ export const tagMap = (collection) => {
|
||||||
const tagString = [...new Set(post.data.tags.map((tag) => tagAliases[tag.toLowerCase()]))]
|
const tagString = [...new Set(post.data.tags.map((tag) => tagAliases[tag.toLowerCase()]))]
|
||||||
.join(' ')
|
.join(' ')
|
||||||
.trim()
|
.trim()
|
||||||
if (tagString) tags[url] = tagString
|
if (tagString) tags[url] = tagString.replace(/\s+/g,' ')
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
if (item.data.links) {
|
if (item.data.links) {
|
||||||
|
@ -31,7 +31,7 @@ export const tagMap = (collection) => {
|
||||||
.map((tag) => tagAliases[tag.toLowerCase()])
|
.map((tag) => tagAliases[tag.toLowerCase()])
|
||||||
.join(' ')
|
.join(' ')
|
||||||
.trim()
|
.trim()
|
||||||
if (tagString) tags[link.url] = tagString
|
if (tagString) tags[link.url] = tagString.replace(/\s+/g,' ')
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"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.",
|
"description": "The source for my personal site. Built using 11ty and hosted on Netlify.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
Reference in a new issue