Skip to content

Commit

Permalink
Fix broken links (#3930)
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleAMathews authored Feb 8, 2018
1 parent 5f6b7d2 commit 17a6d6a
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ production by creating a landing page very fast.

Static site generators like Jekyll all work pretty similarly:

* Describe your content in some common templating language ([Pug](pugjs.org),
* Describe your content in some common templating language ([Pug](http://pugjs.org),
[Handlebars](http://handlebarsjs.com), etc)
* While in development, start a local web server and add file "watchers" that
will listen for content changes and re-render the site
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/adding-tags-and-categories-to-blog-posts.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: Creating tags pages for blog posts

Creating tag pages for your blog post is a way to let visitors browse related content.

To add tags to your blog posts, you will first want to have your site set up to turn your markdown pages into blog posts. To get your blog pages set up, see the [tutorial on Gatsby's data layer](tutorial/part-four/) and [Adding Markdown Pages](docs/adding-markdown-pages/).
To add tags to your blog posts, you will first want to have your site set up to turn your markdown pages into blog posts. To get your blog pages set up, see the [tutorial on Gatsby's data layer](/tutorial/part-four/) and [Adding Markdown Pages](/docs/adding-markdown-pages/).

## Add a tags field to your blog posts

Expand Down
2 changes: 1 addition & 1 deletion docs/docs/awesome-gatsby.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ See the [list of official and community plugins](/docs/plugins/)

* [Static Site Generation with Gatsby.js v0 — Scott Nonnenberg](https://blog.scottnonnenberg.com/static-site-generation-with-gatsby-js/)
* [React.js Conf 2016 - Lightning Talks - Kyle Mathews](https://www.youtube.com/watch?v=RFkNRKL6ZoE)
* [Developing with React and Gatsby.js — Kyle Mathews](http://www.staticwebtech.com/presentations/developing-with-react-gatsbyjs/)
* [Developing with React and Gatsby.js — Kyle Mathews](https://www.youtube.com/watch?v=G4LVKJOOj7o)
* [GraphQL Summit Open Source Lightning Talk on Gatsby — Kyle Mathews](https://youtu.be/y588qNiCZZo)
* [Talk on GatsbyJS @ ViennaJS — Gerald Bauer](https://www.youtube.com/watch?v=f0O1nCgqA3E&feature=youtu.be&a)

Expand Down
2 changes: 1 addition & 1 deletion docs/docs/gatsby-starters.md
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ Community:

* Single Page
* A portfolio Developers and Product launchers alike
* Using [Typography.js](kyleamathews.github.io/typography.js/) easy to switch fonts
* Using [Typography.js](https://kyleamathews.github.io/typography.js/) easy to switch fonts
* All your Project/Portfolio Data in Markdown, server by GraphQL
* Responsive Design, optimized for Mobile devices

Expand Down
1 change: 0 additions & 1 deletion docs/docs/plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,6 @@ root.
* [gatsby-transformer-javascript-static-exports](/packages/gatsby-transformer-javascript-static-exports/)
* [gatsby-transformer-json](/packages/gatsby-transformer-json/)
* [gatsby-transformer-pdf](/packages/gatsby-transformer-pdf/)
* [gatsby-transformer-pdfimages](/packages/gatsby-transformer-pdfimages/)
* [gatsby-transformer-react-docgen](/packages/gatsby-transformer-react-docgen/)
* [gatsby-transformer-remark](/packages/gatsby-transformer-remark/)
* [gatsby-transformer-sharp](/packages/gatsby-transformer-sharp/)
Expand Down
2 changes: 1 addition & 1 deletion docs/features/gatsby-specs.csv
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ Developer Experience,Maintenance & Extensibility,Serverless,3,3,2,2,"<p>Serverle
<li><b>Language features</b>: Classes, static variables, generators, async control flows like promises & async / await</lI>
<li><b>Data structures / types and modularity</b>: Maps, sets, modules, module loading, unicode...</li>
</ul>"
Ecosystem,Ecosystem,Component ecosystem,3,0,3,0,"React has several sets of out-of-the-box component libraries, as well as curated sets eg <a href=""https://js.coach/react"">JSCoach</a>"
Ecosystem,Ecosystem,Component ecosystem,3,0,3,0,"React has several sets of out-of-the-box component libraries, as well as curated sets eg <a href=""https://js.coach/?collection=React"">JSCoach</a>"
,,Hosted option,2,2,3,3,Gatsby and other static site generators can be plugged into static hosts such as Netlify or surge.sh. Wordpress and Squarespace both come with built-in hosting.
,,Theme ecosystem,2,2,3,3,"Gatsby offers various themes through Typography.js, and Jekyll has themes built on it as well. Wordpress and Squarespace offer support for multiple themes through theme selectors out of the box."
Design,Faster design iterations,Programmatic Design,2,0,0,0,"Gatsby offers support for programmatic design by being built on <a href=""https://kyleamathews.github.io/typography.js/"">Typography.js</a>."
Expand Down
6 changes: 3 additions & 3 deletions www/src/components/markdown-page-footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,9 @@ export default class MarkdownPageFooter extends React.Component {
},
},
}}
href={`https://github.com/gatsbyjs/gatsby/blob/master/docs/${
this.props.page.parent.relativePath
}`}
href={`https://github.com/gatsbyjs/gatsby/blob/master/${
this.props.packagePage ? `packages` : `docs`
}/${this.props.page.parent.relativePath}`}
>
<EditIcon css={{ fontSize: 20, position: `relative`, top: -2 }} />
{` `}
Expand Down
2 changes: 1 addition & 1 deletion www/src/templates/template-docs-packages.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class DocsPackagesTemplate extends React.Component {
__html: this.props.data.markdownRemark.html,
}}
/>
<MarkdownPageFooter page={page} />
<MarkdownPageFooter page={page} packagePage />
</Container>
)
}
Expand Down

0 comments on commit 17a6d6a

Please sign in to comment.