From 87aaa2260bb5d11dafcb3385c5ed7240699f93a5 Mon Sep 17 00:00:00 2001 From: shannonbux Date: Tue, 3 Apr 2018 11:08:48 -0600 Subject: [PATCH 1/4] links to plugin authoring page fixed Do I use html hyperlinks in the .js file? Happy to change that if needed. --- docs/docs/plugins.md | 2 +- www/src/pages/packages.js~HEAD | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/docs/plugins.md b/docs/docs/plugins.md index 2c0f6452c71f9..ea021988bd041 100644 --- a/docs/docs/plugins.md +++ b/docs/docs/plugins.md @@ -12,7 +12,7 @@ into site-specific plugins. Gatsby has a large and growing set of plugins. To search/browse official and community plugins and their documentation, visit the [Plugin Library](/packages/). -For information on building your own plugin, see the Plugin Authoring page (/plugin-authoring.md). +For information on building your own plugin, see the [Plugin Authoring page](/plugin-authoring.md). ## How to use Gatsby plugins? diff --git a/www/src/pages/packages.js~HEAD b/www/src/pages/packages.js~HEAD index ac8eac634624a..9957ac33ffd6d 100644 --- a/www/src/pages/packages.js~HEAD +++ b/www/src/pages/packages.js~HEAD @@ -43,8 +43,9 @@ class Plugins extends Component { marginRight: rhythm(3), fontSize: rhythm(3/4), }}> - Please use the search bar to find packages - that will make your blazing-fast site even more awesome. + Please use the search bar to find plugins + that will make your blazing-fast site even more awesome. If you're interested in creating + your own plugin or package, see the Plugin Authoring page.

From 6305d46caf8ee150babbd024f11d273f9540c873 Mon Sep 17 00:00:00 2001 From: shannonbux Date: Tue, 3 Apr 2018 14:06:19 -0600 Subject: [PATCH 2/4] correct .js file and corrected link --- www/src/pages/plugins.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/www/src/pages/plugins.js b/www/src/pages/plugins.js index a3f8477628a76..adb9a4ad2028c 100644 --- a/www/src/pages/plugins.js +++ b/www/src/pages/plugins.js @@ -53,7 +53,8 @@ class Plugins extends Component { }} > Please use the search bar to find plugins that will make your - blazing-fast site even more awesome. + blazing-fast site even more awesome. If you'd like to create your own plugin, + see the Plugin Authoring page in the docs!

From 8bd9792b3ad128c2ea0e1ee6af0104f96b70a6c1 Mon Sep 17 00:00:00 2001 From: shannonbux Date: Tue, 3 Apr 2018 16:51:22 -0600 Subject: [PATCH 3/4] deleted packages.js~HEAD and updated link to plugin authoring --- www/src/pages/packages.js~HEAD | 56 ---------------------------------- www/src/pages/plugins.js | 2 +- 2 files changed, 1 insertion(+), 57 deletions(-) delete mode 100644 www/src/pages/packages.js~HEAD diff --git a/www/src/pages/packages.js~HEAD b/www/src/pages/packages.js~HEAD deleted file mode 100644 index 9957ac33ffd6d..0000000000000 --- a/www/src/pages/packages.js~HEAD +++ /dev/null @@ -1,56 +0,0 @@ -import React, {Component} from "react" -import Container from "../components/container" -import logo from "../gatsby-negative.svg" -import { rhythm } from "../utils/typography" - -class Plugins extends Component { - render(){ - return( - -
- -

Welcome to the Gatsby Package Library!

-

- Please use the search bar to find plugins - that will make your blazing-fast site even more awesome. If you're interested in creating - your own plugin or package, see the Plugin Authoring page. -

-
-
- ) - } -} - -export default Plugins diff --git a/www/src/pages/plugins.js b/www/src/pages/plugins.js index adb9a4ad2028c..707959833c286 100644 --- a/www/src/pages/plugins.js +++ b/www/src/pages/plugins.js @@ -54,7 +54,7 @@ class Plugins extends Component { > Please use the search bar to find plugins that will make your blazing-fast site even more awesome. If you'd like to create your own plugin, - see the Plugin Authoring page in the docs! + see the Plugin Authoring page in the docs!

From e1866ba26de36ce9e25198d54d30a50730fc0c31 Mon Sep 17 00:00:00 2001 From: Kyle Mathews Date: Tue, 3 Apr 2018 15:57:21 -0700 Subject: [PATCH 4/4] Fix link --- docs/docs/plugins.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/plugins.md b/docs/docs/plugins.md index ea021988bd041..751a9fd0d0bc6 100644 --- a/docs/docs/plugins.md +++ b/docs/docs/plugins.md @@ -12,7 +12,7 @@ into site-specific plugins. Gatsby has a large and growing set of plugins. To search/browse official and community plugins and their documentation, visit the [Plugin Library](/packages/). -For information on building your own plugin, see the [Plugin Authoring page](/plugin-authoring.md). +For information on building your own plugin, see the [Plugin Authoring page](/docs/plugin-authoring/). ## How to use Gatsby plugins?