chore: feed updates
This commit is contained in:
parent
c15632bb3a
commit
719971d3fc
2 changed files with 2 additions and 2 deletions
|
@ -91,7 +91,7 @@ module.exports = function (eleventyConfig) {
|
||||||
url: post.data.link,
|
url: post.data.link,
|
||||||
title: post.data.title,
|
title: post.data.title,
|
||||||
date: post.data.date,
|
date: post.data.date,
|
||||||
description: md.render(post.data.post_excerpt),
|
description: post.data.post_excerpt,
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
<updated>{{ entry.date | date: "%m.%d.%Y" }}</updated>
|
<updated>{{ entry.date | date: "%m.%d.%Y" }}</updated>
|
||||||
<id>{{ entry.url | stripUtm | encodeAmp }}</id>
|
<id>{{ entry.url | stripUtm | encodeAmp }}</id>
|
||||||
<content type="html">
|
<content type="html">
|
||||||
{{ entry.excerpt | escape }}
|
{{ entry.excerpt | escape | markdown }}
|
||||||
</content>
|
</content>
|
||||||
</entry>
|
</entry>
|
||||||
{%- endfor %}
|
{%- endfor %}
|
||||||
|
|
Reference in a new issue