Use the value of `config.short_feed` in the `/rss` route.

main
Fabio Manganiello 1 month ago
parent 0eb29e8c5a
commit 7530ecf7ba

@ -1,6 +1,6 @@
# Changelog
## 0.2.18
## 0.2.19
- Added `short_feed` configuration flag to permanently disable returning the
full content of the articles in the RSS feed.

@ -153,8 +153,13 @@ def rss_route():
<item>
<title>{title}</title>
<link>{base_link}{link}</link>
<pubDate>{published}</pubDate>
<description><![CDATA[{content}]]></description>
<pubDate>{published}</pubDate>"""
+ (
"<description><![CDATA[{content}]]></description>"
if not config.short_feed
else ""
)
+ """
<media:content medium="image" url="{base_link}{image}" width="200" height="150" />
</item>
""".format(

Loading…
Cancel
Save