fix: formatting

This commit is contained in:
Cory Dransfeldt 2024-06-01 16:25:18 -07:00
parent 305ca8d7e6
commit 8d7d253913
No known key found for this signature in database
2 changed files with 3 additions and 2 deletions

View file

@ -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}<br/><br/>` // books
if (entry.type === 'book' || entry.type === 'movie' || entry.type === 'link') excerpt = `${entry.description}<br/><br/>` // books
// send full post content to rss
if (entry?.url?.includes('/posts/') && entry.content) excerpt = sanitizeHtml(`${md.render(entry.content)}${feedNote}`, {

View file

@ -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)