chore: feed normalization

This commit is contained in:
Cory Dransfeldt 2024-04-18 14:47:30 -07:00 committed by GitHub
parent 9fe5c76a7d
commit cb4941fc28
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -141,8 +141,11 @@ export default {
if (entry?.data?.link) url = entry.data.link
// set the entry excerpt
if (entry.description) excerpt = entry.description
if (entry?.data?.description) excerpt = `${entry?.data?.description}<br/><br/>`
if (entry.description) excerpt = entry.description // general case
if (entry?.data?.description) excerpt = `${entry?.data?.description}<br/><br/>` // links where description is stored in frontmatter
if (entry.type === 'book') excerpt = `${entry.description}<br/><br/>` // books
// send full post content to rss
if (entry.content) excerpt = sanitizeHtml(`${entry.content}${feedNote}`, {
disallowedTagsMode: 'completelyDiscard'
})
@ -214,4 +217,4 @@ export default {
if (!string.includes(' ')) return `#${capitalizeFirstLetter(string)}`
return `#${string.split(' ').map(s => capitalizeFirstLetter(s)).join('')}`
}
}
}