feat: full text rss

This commit is contained in:
Cory Dransfeldt 2024-04-10 07:05:18 -07:00
parent 3a1ed0df06
commit b980cccf02
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -138,7 +138,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?.post_excerpt) excerpt = md.render(entry.data.post_excerpt) if (entry.content) excerpt = entry.content
// if there's a valid entry return a normalized object // if there's a valid entry return a normalized object
if (entry) if (entry)

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "9.9.4", "version": "9.10.0",
"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": {