update atom feed output

this should fix the warning i get usually

(WARN  found no layout file for "atom" for kind "section": You
should create a template file which matches Hugo Layouts Lookup
Rules for this combination.)
main
Dominic Reich 1 year ago
parent 63c60c5314
commit e077a6d083
Signed by: dominic
GPG Key ID: BC9D6AE1A3BE169A

@ -22,32 +22,70 @@ summaryLength = 0
#[outputs] #[outputs]
# home = ["HTML", "RSS", "JSON"] # home = ["HTML", "RSS", "JSON"]
# removed for now
# [mediaTypes]
# [mediaTypes."application/atom"]
# suffixes = ["xml"]
#
# [outputFormats.Atom]
# mediaType = "application/atom"
# baseName = "index"
# isPlainText = false
#
# [outputFormats.HumansTXT]
# mediaType = "text/plain"
# baseName = "humans"
# isPlainText = true
# notAlternative = true
#
# [outputFormats.Tootpick]
# mediaType = "text/html"
# basename = "tootpick"
# isPlainText = false
# isHTML = true
# notAlternative = true
#
# [outputs]
# home = [ "HTML", "Atom", "JSON", "HumansTXT", "Tootpick" ]
# page = ["HTML"]
# section = ["HTML", "Atom"]
# # taxonomyTerm = ["HTML"]
# taxonomy = ["HTML"]
# https://discourse.gohugo.io/t/atom-and-json-feeds/13572
disableKinds = ["RSS"] # kick out RSS
[mediaTypes] [mediaTypes]
[mediaTypes."application/atom"] [mediaTypes."application/atom+xml"]
suffixes = ["xml"] suffixes = ["xml"]
[outputFormats.Atom]
mediaType = "application/atom" [outputFormats.HTML]
baseName = "index" baseName = "index"
isPlainText = false NoUgly = true
[outputFormats.HumansTXT] [outputFormats.ATOM]
mediaType = "text/plain" MediaType = "application/atom+xml"
baseName = "humans" BaseName = "feed"
isPlainText = true suffix = "xml"
notAlternative = true IsHTML = false
IsPlainText = false
noUgly = true
Rel = "alternate"
[outputFormats.Tootpick] [outputFormats.JSON]
mediaType = "text/html" MediaType = "application/json"
basename = "tootpick" BaseName = "feed"
isPlainText = false suffix = "json"
isHTML = true IsHTML = false
notAlternative = true IsPlainText = true
noUgly = false
Rel = "alternate"
[outputs] [outputs]
home = [ "HTML", "Atom", "JSON", "HumansTXT", "Tootpick" ] home = [ "HTML", "ATOM", "JSON"]
section = [ "HTML", ]
page = [ "HTML" ] page = [ "HTML" ]
section = ["HTML", "Atom"]
# taxonomyTerm = ["HTML"]
taxonomy = [ "HTML" ] taxonomy = [ "HTML" ]
taxonomyTerm = [ "HTML" ]

Loading…
Cancel
Save