diff --git a/config/filters/index.js b/config/filters/index.js index 50672e7b..7822e30b 100644 --- a/config/filters/index.js +++ b/config/filters/index.js @@ -115,11 +115,11 @@ export default { // set the entry url if (entry.url?.includes('http')) url = entry.url if (!entry.url?.includes('http')) url = new URL(entry.url, BASE_URL).toString() - if (entry?.data?.link) url = entry.data.link + if (entry?.link) url = entry.link // set the entry excerpt if (entry.description) excerpt = entry.description // general case - if (entry.type === 'book' || entry.type === 'movie') excerpt = `${entry.description}

` // books + if (entry.type === 'book' || entry.type === 'movie' || entry.type === 'link') excerpt = `${entry.description}

` // books // send full post content to rss if (entry?.url?.includes('/posts/') && entry.content) excerpt = sanitizeHtml(`${md.render(entry.content)}${feedNote}`, { diff --git a/src/_data/links.js b/src/_data/links.js index 76c37d7c..e2e1d69d 100644 --- a/src/_data/links.js +++ b/src/_data/links.js @@ -41,6 +41,7 @@ const fetchAllLinks = async () => { for (const link of data) { link.tags = await fetchTagsForLink(link.id) + link.type = 'link' } links = links.concat(data)