Skip to content

Commit

Permalink
chore: correct code block language tags (#16523)
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanprobst authored and GatsbyJS Bot committed Aug 11, 2019
1 parent 97ec581 commit 19a67e4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions packages/gatsby-plugin-canonical-urls/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ a `rel=canonical` e.g.

URL search parameters are included in the canonical URL by default. If you worry about duplicate content because for example `/blog` and `/blog?tag=foobar` will be indexed separately, you should set the option `stripQueryString` to `true`. The latter will then be changed to `/blog`.

```title=gatsby-config.js
```js:title=gatsby-config.js
module.exports = {
plugins: [
{
Expand All @@ -45,6 +45,6 @@ module.exports = {
stripQueryString: true,
},
},
]
],
}
```
6 changes: 3 additions & 3 deletions packages/gatsby-transformer-hjson/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,15 @@ For example, lets say your project has a data layout like:

Where each of `a.hjson`, `b.hjson` and `c.hjson` look like:

```hjson
```
value: a
```

```hjson
```
value: b
```

```hjson
```
value: c
```

Expand Down

0 comments on commit 19a67e4

Please sign in to comment.