note archived-ness on the rss feed
Web/pipeline/head This commit looks good Details

This commit is contained in:
Ell 2020-09-30 00:27:47 +02:00
父節點 4920725c29
當前提交 837cd67c74
共有 1 個文件被更改,包括 1 次插入1 次删除

查看文件

@ -40,7 +40,7 @@ function createFeed(callback) {
fs.readFile(__dirname + "/../blog/" + post.id + ".md", function (_, content) {
let html = converter.makeHtml(content.toString());
feed.addItem({
title: post.name,
title: post.name + (post.archived ? " (Archived)" : ""),
link: "https://ellpeck.de/blog-" + post.id,
description: post.summary,
content: html,