chore: feed updates

This commit is contained in:
Cory Dransfeldt 2023-09-19 12:14:14 -07:00
parent c15632bb3a
commit 719971d3fc
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -91,7 +91,7 @@ module.exports = function (eleventyConfig) {
url: post.data.link,
title: post.data.title,
date: post.data.date,
description: md.render(post.data.post_excerpt),
description: post.data.post_excerpt,
})
})
}

View file

@ -26,7 +26,7 @@
<updated>{{ entry.date | date: "%m.%d.%Y" }}</updated>
<id>{{ entry.url | stripUtm | encodeAmp }}</id>
<content type="html">
{{ entry.excerpt | escape }}
{{ entry.excerpt | escape | markdown }}
</content>
</entry>
{%- endfor %}