fix: link data

This commit is contained in:
Cory Dransfeldt 2024-04-20 12:19:35 -07:00
parent 1e2e4b4110
commit f48610a9c6

View file

@ -49,7 +49,7 @@ export const tagMap = (collection) => {
const tags = {}
const collectionData = collection.getAll()[0]
const posts = collectionData.data.collections.posts
const links = collectionData.data.links
const links = collectionData.data.collections.links
if (posts) {
posts.forEach((post) => {
const url = post.url.includes('http') ? post.url : `https://coryd.dev${post.url}`
@ -58,6 +58,13 @@ export const tagMap = (collection) => {
.trim()
if (tagString) tags[url] = tagString.replace(/\s+/g,' ')
})
links.forEach((link) => {
const url = link.data.link
const tagString = [...new Set(link.data.tags.map((tag) => tagAliases[tag.toLowerCase()]))]
.join(' ')
.trim()
if (tagString) tags[url] = tagString.replace(/\s+/g,' ')
})
}
return tags
}