From 1d612cdbcfcb7eaa6c76ce74f0760e1530ce2b84 Mon Sep 17 00:00:00 2001 From: Lucas Fryzek Date: Sat, 11 Feb 2023 09:46:02 -0500 Subject: Add whole post to rss feed, and link to rss feed on pages --- tools/rss_gen.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/rss_gen.py b/tools/rss_gen.py index 0b8d753..2d0dbee 100755 --- a/tools/rss_gen.py +++ b/tools/rss_gen.py @@ -6,6 +6,7 @@ import time import email.utils import os import sys +from subprocess import Popen, PIPE today = email.utils.formatdate() url = "https://fryzekconcepts.com" @@ -63,7 +64,14 @@ for note in notes: item = ET.SubElement(channel, "item") ET.SubElement(item, "title").text = note["title"] ET.SubElement(item, "link").text = post_url - ET.SubElement(item, "description").text = "{}...".format(note["long_preview"]) + + + # Generate simple text version of post + process = Popen(["pandoc", "--lua-filter=./tools/note.lua", "--highlight-style=pygments", + "./notes/{}.md".format(note["name"])], stdout=PIPE) + (output, err) = process.communicate() + exit_code = process.wait() + ET.SubElement(item, "description").text = output.decode() #if "categories" in note: # ET.SubElement(item, "category").text = note["categories"] -- cgit v1.2.3