chore: feed normalization
This commit is contained in:
parent
9fe5c76a7d
commit
cb4941fc28
1 changed files with 6 additions and 3 deletions
|
@ -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('')}`
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue