summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 4 insertions, 2 deletions
diff --git a/README.md b/README.md
index bd20521..4840260 100644
--- a/README.md
+++ b/README.md
@@ -62,7 +62,7 @@ Every page kind that the site renders must list its output formats, because Hugo
```toml
[outputs]
home = ["HTML", "Atom"]
- section = ["HTML"]
+ section = ["HTML", "Atom"]
taxonomy = ["HTML", "Atom"]
term = ["HTML", "Atom"]
page = ["HTML"]
@@ -73,12 +73,14 @@ And for the capsule:
```toml
[outputs]
home = ["Gemini", "Gemini_Atom"]
- section = ["Gemini"]
+ section = ["Gemini", "Gemini_Atom"]
taxonomy = ["Gemini", "Gemini_Atom"]
term = ["Gemini", "Gemini_Atom"]
page = ["Gemini"]
```
+A feed is rendered for every kind that lists `Atom` or `Gemini_Atom`: the homepage, each section, the taxonomy list and each term. Leave the format out of a kind to omit that feed.
+
### Optional
| Setting | Default | Purpose |