Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update plugins with plugin authoring link #4646

Merged
merged 2 commits into from
Mar 22, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions docs/docs/plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ 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).

## How to use Gatsby plugins?

Gatsby plugins are just Node.js packages meaning you install them like anything else in
Expand All @@ -34,7 +36,3 @@ module.exports = {
```

Plugins can take options. Note that plugin options will be stringified by Gatsby, so they cannot be functions.

## Creating your own plugins

If you’d like to create a custom Gatsby plugin, check out the [plugin authoring guide](/docs/plugin-authoring/).