From 695a107d802ed4060eb931af6d7fd17d5961606f Mon Sep 17 00:00:00 2001 From: rivassec Date: Fri, 11 Sep 2026 19:30:36 -0700 Subject: [PATCH] Feeds: ship full post content in RSS/Atom RSS feeds shipped truncated summaries only. Pelican's default for RSS is summary-only (RSS_FEED_SUMMARY_ONLY defaults True), and publishconf.py never overrode it, so output/feeds/all.rss.xml carried 150-310 char truncated summaries per item and zero full content. Set RSS_FEED_SUMMARY_ONLY = False in publishconf.py so the RSS feed carries full post HTML in . Note: Pelican does not emit ; it places full content in for RSS, while Atom uses . --- publishconf.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/publishconf.py b/publishconf.py index aa18ae2c..ee023d14 100644 --- a/publishconf.py +++ b/publishconf.py @@ -11,4 +11,6 @@ FEED_ALL_RSS = "feeds/all.rss.xml" CATEGORY_FEED_ATOM = "feeds/{slug}.atom.xml" +RSS_FEED_SUMMARY_ONLY = False + DELETE_OUTPUT_DIRECTORY = True