In all previous versions, this worked to eliminate all RSS feeds except for the home page:
[outputs]
home = ["HTML","RSS"]
page = ["HTML"]
Testing 0.38, that no longer worked, and as per the release notes, for 0.38 I changed it to:
[outputs]
home = ["HTML","RSS"]
page = ["HTML"]
section = ["HTML"]
taxonomy = ["HTML"]
taxonomyTerm = ["HTML"]
That eliminated most of the new index.xml
files, but I’m still getting one for each taxonomy:
% find public -name index.xml
public/series/index.xml
public/comments/index.xml
public/index.xml
public/categories/index.xml
The three unwanted files only contain:
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
What am I missing here?
-j