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
|
// set the entry excerpt
|
||||||
if (entry.description) excerpt = entry.description
|
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}`, {
|
if (entry.content) excerpt = sanitizeHtml(`${entry.content}${feedNote}`, {
|
||||||
disallowedTagsMode: 'completelyDiscard'
|
disallowedTagsMode: 'completelyDiscard'
|
||||||
})
|
})
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "12.0.4",
|
"version": "12.0.5",
|
||||||
"description": "The source for my personal site. Built using 11ty.",
|
"description": "The source for my personal site. Built using 11ty.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
Reference in a new issue