Fix RSS feeds for doc and test sites

master
Kaushal Modi 8 years ago
parent a772c38fd1
commit 609cf10db7
  1. 6
      doc/config.toml
  2. 6
      test/site/config.toml

@ -52,8 +52,12 @@ disableFastRender = true # Hugo 0.30
doc = "/doc/:filename/"
test = "/test/:slug/"
# https://discourse.gohugo.io/t/need-to-redefine-the-whole-outputs-map-when-needing-to-set-just-one-kind/10953
[Outputs] # https://gist.github.com/eddiewebb/735feb48f50f0ddd65ae5606a1cb41ae
home = ["HTML", "JSON"]
home = ["HTML", "RSS", "JSON"] # default: home = ["HTML", "RSS"]
section = ["HTML", "RSS"]
taxonomy = ["HTML", "RSS"]
taxonomyTerm = ["HTML", "RSS"]
[Params]
name = "ox-hugo"

@ -24,8 +24,12 @@ pygmentsUseClasses = true # This applies to Chroma too.
category = "categories" # SINGULAR = "PLURAL"
tag = "tags"
# https://discourse.gohugo.io/t/need-to-redefine-the-whole-outputs-map-when-needing-to-set-just-one-kind/10953
[Outputs] # https://gist.github.com/eddiewebb/735feb48f50f0ddd65ae5606a1cb41ae
home = ["HTML", "JSON"]
home = ["HTML", "RSS", "JSON"] # default: home = ["HTML", "RSS"]
section = ["HTML", "RSS"]
taxonomy = ["HTML", "RSS"]
taxonomyTerm = ["HTML", "RSS"]
[Author]
name = "Kaushal Modi"

Loading…
Cancel
Save