fix: deduplicate tags
This commit is contained in:
parent
8f6e26088c
commit
1dfa62dce6
1 changed files with 28 additions and 22 deletions
14
.eleventy.js
14
.eleventy.js
|
@ -86,8 +86,9 @@ module.exports = function (eleventyConfig) {
|
|||
if (item.data.collections.posts) {
|
||||
item.data.collections.posts.forEach((post) => {
|
||||
const url = post.url.includes('http') ? post.url : `https://coryd.dev${post.url}`
|
||||
const tagString = post.data.tags
|
||||
.map((tag) => {
|
||||
const tagString = [
|
||||
...new Set(
|
||||
post.data.tags.map((tag) => {
|
||||
if (
|
||||
typeof tagAliases.tags.find((t) => t.aliases.includes(tag.toLowerCase()))?.[
|
||||
'tag'
|
||||
|
@ -97,6 +98,8 @@ module.exports = function (eleventyConfig) {
|
|||
tagAliases.tags.find((t) => t.aliases.includes(tag.toLowerCase()))?.['tag']
|
||||
}`
|
||||
})
|
||||
),
|
||||
]
|
||||
.join(' ')
|
||||
.trim()
|
||||
if (tagString) tags[url] = tagString
|
||||
|
@ -104,8 +107,9 @@ module.exports = function (eleventyConfig) {
|
|||
}
|
||||
if (item.data.links) {
|
||||
item.data.links.forEach((link) => {
|
||||
const tagString = link.tags
|
||||
.map((tag) => {
|
||||
const tagString = [
|
||||
...new Set(
|
||||
link.tags.map((tag) => {
|
||||
if (
|
||||
typeof tagAliases.tags.find((t) => t.aliases.includes(tag.toLowerCase()))?.[
|
||||
'tag'
|
||||
|
@ -115,6 +119,8 @@ module.exports = function (eleventyConfig) {
|
|||
tagAliases.tags.find((t) => t.aliases.includes(tag.toLowerCase()))?.['tag']
|
||||
}`
|
||||
})
|
||||
),
|
||||
]
|
||||
.join(' ')
|
||||
.trim()
|
||||
if (tagString) tags[link.url] = tagString
|
||||
|
|
Reference in a new issue