Skip to content

Commit

Permalink
docs(adding-an-rss-feed): Fix incorrect filename (gatsbyjs#16290)
Browse files Browse the repository at this point in the history
  • Loading branch information
sergkudinov authored and sidharthachatterjee committed Aug 2, 2019
1 parent 52cd44d commit 1ee84aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/docs/adding-an-rss-feed.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ The good news is you can accommodate these scenarios and more in `gatsby-config.

To customize the default feed schema (a.k.a. structure) output by the plugin to work with your website's content, you can start with the following code:

```js:title=gatsby.config.js
```js:title=gatsby-config.js
module.exports = {
plugins: [
{
Expand Down Expand Up @@ -140,7 +140,7 @@ To see your feed in action, run `gatsby build && gatsby serve` and you can then

If creating a RSS feed for a podcast you probably will want to include iTunes RSS blocks. They take the format of `itunes:author` which GraphQL does not read. Here's an example of how to implement iTunes RSS blocks using this plugin:

```js:title=gatsby.config.js
```js:title=gatsby-config.js
module.exports = {
plugins: [
{
Expand Down

0 comments on commit 1ee84aa

Please sign in to comment.