Add post body to RSS feed

This commit is contained in:
Talia 2023-09-20 16:22:21 +02:00
parent 3e4e3d84d6
commit 4628cab3f8

View file

@ -26,6 +26,10 @@ return function(posts)
return xml.item {
xml.title(post.head.title);
xml.description(post.head.description);
xml.content {
type="html";
post.body;
};
xml.link(link);
xml.guid(link);
xml.pubDate(os.date("%d %b %Y", post.head.timestamp));