From 350ecd5e9736f272ec2308e0821ab29d00b76f34 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Mon, 4 Mar 2024 13:09:19 +0300 Subject: [PATCH] Fix feed generation --- _config.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/_config.ts b/_config.ts index 9a2bf2b..074a46c 100644 --- a/_config.ts +++ b/_config.ts @@ -36,21 +36,20 @@ site.use(feed({ output: ["/blog.rss"], query: "type=article", - sort: "date=desc", + sort: "date=asc", + limit: Infinity, info: { title: "RGBCube's Blog", description: "The blog where RGBCube dumps his schizophrenic ramblings about software and all the likes.", - lang: "en", generator: false, }, items: { title: "=title", description: "=description", published: "=date", - content: "$ content", - lang: "en", + content: "$.content", }, }));