Skip to content

Commit

Permalink
Format and ignore compiled file
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleAMathews committed Dec 13, 2017
1 parent cbcc196 commit f947a1a
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 24 deletions.
2 changes: 1 addition & 1 deletion docs/blog/gatsbygram-case-study/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ Every page will be rendered as children of the `Layout` component:
```jsx
<Layout>
<Page />
</Layout>;
</Layout>
```

Gatsbygram's layout component is somewhat more complicated than most sites as it
Expand Down
8 changes: 4 additions & 4 deletions docs/docs/awesome-gatsby.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ A curated list of interesting Gatsby community projects and learning resources.

## Gatsby tutorials

- [Official tutorial](/tutorial/)
- [Level Up Tutorials series on creating a blog](https://www.youtube.com/watch?v=b2H7fWhQcdE&list=PLLnpHn493BHHfoINKLELxDch3uJlSapxg)
- [Giraffe Academy series on getting started with Gatsby](https://www.youtube.com/playlist?list=PLLAZ4kZ9dFpMXuwazIt4mWtTuqOHdjRlk)
- [Egghead course — "Build a Blog with React and Markdown using Gatsby"](https://egghead.io/courses/build-a-blog-with-react-and-markdown-using-gatsby)
* [Official tutorial](/tutorial/)
* [Level Up Tutorials series on creating a blog](https://www.youtube.com/watch?v=b2H7fWhQcdE&list=PLLnpHn493BHHfoINKLELxDch3uJlSapxg)
* [Giraffe Academy series on getting started with Gatsby](https://www.youtube.com/playlist?list=PLLAZ4kZ9dFpMXuwazIt4mWtTuqOHdjRlk)
* [Egghead course — "Build a Blog with React and Markdown using Gatsby"](https://egghead.io/courses/build-a-blog-with-react-and-markdown-using-gatsby)
2 changes: 1 addition & 1 deletion docs/docs/custom-html.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@ If you see this error: `Uncaught Error: _registerComponent(...): Target containe
key={`body`}
id="___gatsby"
dangerouslySetInnerHTML={{ __html: this.props.body }}
/>;
/>
```
2 changes: 1 addition & 1 deletion docs/docs/gatsby-starters.md
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ Community:
* Create presentations/slides using Gatsby.
* Offline support.
* Page transitions.

* [gatsby-starter-forty](https://github.com/ChangoMan/gatsby-starter-forty)
[(demo)](http://gatsby-forty.surge.sh/)

Expand Down
2 changes: 1 addition & 1 deletion docs/docs/migrating-from-v0-to-v1.md
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ your `html.js` should look like:
<body>
<div id="___gatsby" dangerouslySetInnerHTML={{ __html: this.props.body }} />
{this.props.postBodyComponents}
</body>;
</body>
```

## \_template.js is now src/layouts/index.js
Expand Down
1 change: 0 additions & 1 deletion docs/docs/plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,4 +150,3 @@ root.
* [gatsby-source-stripe](https://github.com/njosefbeck/gatsby-source-stripe)
* [gatsby-source-twitch](https://github.com/jedidiah/gatsby-source-twitch)
* [gatsby-source-workable](https://github.com/tumblbug/gatsby-source-workable)

6 changes: 3 additions & 3 deletions packages/gatsby-plugin-netlify/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,13 +108,13 @@ You can validate the `_headers` config through the

### Redirects

You can create redirects using the [`createRedirect`](https://www.gatsbyjs.org/docs/bound-action-creators/#createRedirect) action.
You can create redirects using the [`createRedirect`](https://www.gatsbyjs.org/docs/bound-action-creators/#createRedirect) action.

An example:

```javascript
createRedirect({ fromPath: '/old-url', toPath: '/new-url', isPermanent: true })
createRedirect({ fromPath: '/url', toPath: '/zn-CH/url', Language: 'zn' })
createRedirect({ fromPath: "/old-url", toPath: "/new-url", isPermanent: true });
createRedirect({ fromPath: "/url", toPath: "/zn-CH/url", Language: "zn" });
```

You can also create a `_redirects` file in the `static` folder for the same affect. Any programmatically created redirects will be appended to the file.
Expand Down
12 changes: 0 additions & 12 deletions packages/gatsby-source-filesystem/index.js

This file was deleted.

0 comments on commit f947a1a

Please sign in to comment.