From cb205d1c4bf42f5c2e25cef6e7884853c86de056 Mon Sep 17 00:00:00 2001 From: Lucas Fryzek Date: Fri, 20 Jan 2023 22:58:09 -0500 Subject: Add RSS feed --- tools/front_page.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'tools/front_page.lua') diff --git a/tools/front_page.lua b/tools/front_page.lua index 9557a53..6a7cf4d 100644 --- a/tools/front_page.lua +++ b/tools/front_page.lua @@ -36,7 +36,11 @@ function Pandoc(doc) local header = pandoc.Header(2, note.title) table.insert(out_list, header) - table.insert(out_list, pandoc.Para(string.format("%s...", note.preview))) + if note["cover_image"] == nil then + table.insert(out_list, pandoc.Para(string.format("%s...", note.long_preview))) + else + table.insert(out_list, pandoc.Para(string.format("%s...", note.preview))) + end local out = pandoc.MetaBlocks(out_list) output:insert(pandoc.MetaMap({link=string.format("/notes/%s.html", note.note_name), note=out})) -- cgit v1.2.3