From 0d306f99954626a347cad1b2d81e80544ddf9e0c Mon Sep 17 00:00:00 2001 From: Lucas Fryzek Date: Wed, 8 Feb 2023 21:45:01 -0500 Subject: Switch to long feed --- tools/rss_gen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/rss_gen.py b/tools/rss_gen.py index 75572ba..0c7d8aa 100755 --- a/tools/rss_gen.py +++ b/tools/rss_gen.py @@ -63,7 +63,7 @@ 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 = note["preview"] + ET.SubElement(item, "description").text = note["long_preview"] #if "categories" in note: # ET.SubElement(item, "category").text = note["categories"] -- cgit v1.2.3