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

このコミットが含まれているのは:
Ell 2020-09-30 00:27:47 +02:00
コミット 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,