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