diff options
author | Lucas Fryzek <lucas.fryzek@gmail.com> | 2023-02-08 21:45:01 -0500 |
---|---|---|
committer | Lucas Fryzek <lucas.fryzek@gmail.com> | 2023-02-08 21:45:01 -0500 |
commit | 0d306f99954626a347cad1b2d81e80544ddf9e0c (patch) | |
tree | ce83f65f9210942bb0ccaacc9b68983cb6fd2226 /tools | |
parent | e9ba415feb4d524cc7c3311bc98cc59971f873d2 (diff) |
Switch to long feed
Diffstat (limited to 'tools')
-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 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"] |