Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use .atom extension in docs examples since we write an Atom feed #359

Merged
merged 1 commit into from Jan 3, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -40,7 +40,7 @@ Do you already have an existing feed someplace other than `/feed.xml`, but are o

```yml
feed:
path: atom.xml
path: /blog/feed.atom
```

To note, you shouldn't have to do this unless you already have a feed you're using, and you can't or wish not to redirect existing subscribers.
Expand Down Expand Up @@ -178,7 +178,7 @@ By default, collection feeds will be outputted to `/feed/<COLLECTION>.xml`. If y
feed:
collections:
changes:
path: "/changes.xml"
path: "/changes.atom"
```

Finally, collections can also have category feeds which are outputted as `/feed/<COLLECTION>/<CATEGORY>.xml`. Specify categories like so:
Expand All @@ -187,7 +187,7 @@ Finally, collections can also have category feeds which are outputted as `/feed/
feed:
collections:
changes:
path: "/changes.xml"
path: "/changes.atom"
categories:
- news
- updates
Expand Down