From b3f5d80a6f55dad4a6f2016665e4a807bb87ae3b Mon Sep 17 00:00:00 2001 From: Lucas Fryzek Date: Wed, 8 Feb 2023 21:57:42 -0500 Subject: Add '...' to 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 0c7d8aa..0b8d753 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["long_preview"] + ET.SubElement(item, "description").text = "{}...".format(note["long_preview"]) #if "categories" in note: # ET.SubElement(item, "category").text = note["categories"] -- cgit v1.2.3