fix: link feed formatting
This commit is contained in:
parent
74faf6d1d3
commit
6dd48d8ad4
2 changed files with 2 additions and 2 deletions
|
@ -142,7 +142,7 @@ export default {
|
|||
|
||||
// set the entry excerpt
|
||||
if (entry.description) excerpt = entry.description
|
||||
if (entry?.data?.description) excerpt = entry?.data?.description
|
||||
if (entry?.data?.description) excerpt = `${entry?.data?.description}<br/><br/>`
|
||||
if (entry.content) excerpt = sanitizeHtml(`${entry.content}${feedNote}`, {
|
||||
disallowedTagsMode: 'completelyDiscard'
|
||||
})
|
||||
|
|
Reference in a new issue