From: Zack M. Davis Date: Wed, 15 Jul 2026 23:12:15 +0000 (-0700) Subject: RSS format? X-Git-Url: https://zackmdavis.net/blog/source?a=commitdiff_plain;h=d517f3f2c055c7958417a649ef98d32572c0c990;p=An_Algorithmic_Lucidity.git RSS format? Um, I think the gender blog is on Atom, but Claude did this to match the WordPress setup? --- 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