google / docsy

A set of Hugo doc templates for launching open source content.
https://docsy.dev
Apache License 2.0
2.63k stars 905 forks source link

disableKinds should not be located under params in the hugo.yaml file #2103

Closed irtom closed 2 weeks ago

irtom commented 1 month ago

I tried to use disableKinds to disable the generation of the index.xml file. Following the documentation I added

params:
  disableKinds: [RSS]

to my hugo.yaml file. Unfortunately it did not have any effect, the file was still being generated. I then noticed the hugo.yaml file already contained a disableKinds entry for the taxonomies, not under params. Adding "disableKinds: [RSS]" in the same place disabled the generation of the index.xml file.

Please update the documentation to reflect this.