Lowercase category/tag names
With the following config:
feed:
path: atom.xml
categories:
- Emacs
the feed for the category Emacs, ends up being named feed/Emacs.xml instead of feed/emacs.xml. I took me a while to figure this out as I expected that the feed would named feed/emacs.xml, but trying to access it resulted in a 404. As capitalized names are uncommon in URLs, I think it makes sense to just lowercase category names.
The same problem exists for tag feeds.
As capitalized names are uncommon in URLs,
To maintain backwards-compatibility, I think the best route would be to support a new configuration:
feed:
lowercased_feed_url: true # false by default
Yeah, that makes perfect sense.
The issue is still relevant.