diff options
author | Lucas Fryzek <lucas.fryzek@gmail.com> | 2023-02-08 21:57:42 -0500 |
---|---|---|
committer | Lucas Fryzek <lucas.fryzek@gmail.com> | 2023-02-08 21:57:42 -0500 |
commit | b3f5d80a6f55dad4a6f2016665e4a807bb87ae3b (patch) | |
tree | 0bef5ba804879b44e3aee50d1f78fa215ecfcb1a /tools/rss_gen.py | |
parent | 0d306f99954626a347cad1b2d81e80544ddf9e0c (diff) |
Add '...' to feed
Diffstat (limited to 'tools/rss_gen.py')
-rwxr-xr-x | tools/rss_gen.py | 2 |
1 files changed, 1 insertions, 1 deletions
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"] |