fix: link data
This commit is contained in:
parent
1e2e4b4110
commit
f48610a9c6
1 changed files with 8 additions and 1 deletions
|
@ -49,7 +49,7 @@ export const tagMap = (collection) => {
|
||||||
const tags = {}
|
const tags = {}
|
||||||
const collectionData = collection.getAll()[0]
|
const collectionData = collection.getAll()[0]
|
||||||
const posts = collectionData.data.collections.posts
|
const posts = collectionData.data.collections.posts
|
||||||
const links = collectionData.data.links
|
const links = collectionData.data.collections.links
|
||||||
if (posts) {
|
if (posts) {
|
||||||
posts.forEach((post) => {
|
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}`
|
||||||
|
@ -58,6 +58,13 @@ export const tagMap = (collection) => {
|
||||||
.trim()
|
.trim()
|
||||||
if (tagString) tags[url] = tagString.replace(/\s+/g,' ')
|
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
|
return tags
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue