From d517f3f2c055c7958417a649ef98d32572c0c990 Mon Sep 17 00:00:00 2001 From: "Zack M. Davis" Date: Wed, 15 Jul 2026 16:12:15 -0700 Subject: [PATCH] RSS format? Um, I think the gender blog is on Atom, but Claude did this to match the WordPress setup? --- publishconf.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/publishconf.py b/publishconf.py index 8ed2a08..7b813a3 100644 --- a/publishconf.py +++ b/publishconf.py @@ -12,8 +12,13 @@ from pelicanconf import * # If you have a custom domain, set it here # SITEURL = 'https://yourdomain.com' -FEED_ALL_ATOM = 'feeds/all.atom.xml' -CATEGORY_FEED_ATOM = 'feeds/{slug}.atom.xml' +# RSS (not Atom) to match the existing WordPress feed's format at +# zackmdavis.net/blog/feed/. The output path is feed/index.xml rather than +# a bare feed/ so it's a real static file; getting the URL down to exactly +# /feed/ (no filename) needs a webserver directory-index or redirect rule, +# which depends on whatever we end up hosting on. +FEED_ALL_RSS = 'feed/index.xml' +CATEGORY_FEED_RSS = 'category/{slug}/feed/index.xml' DELETE_OUTPUT_DIRECTORY = True -- 2.53.0