Skip to content

Commit 63cc996

Browse files
phredsidharthachatterjee
authored andcommitted
docs(www): Update links to tutorials in plugins overview (#12466)
1 parent ffa3959 commit 63cc996

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/docs/how-plugins-work.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,10 @@ There are four standard plugin naming conventions for Gatsby:
2222

2323
- **`gatsby-source-*`** — a source plugin loads data from a given source (e.g. WordPress, MongoDB, the file system). Use this plugin type if you are connecting a new source of data to Gatsby.
2424
- Example: [`gatsby-source-contentful`](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-contentful)
25-
- Docs: [create a source plugin](/docs/create-source-plugin/)
25+
- Docs: [creating a source plugin](/docs/creating-a-source-plugin/)
2626
- **`gatsby-transformer-*`** — a transformer plugin converts data from one format (e.g. CSV, YAML) to a JavaScript object. Use this naming convention if your plugin will be transforming data from one format to another.
2727
- Example: [`gatsby-transformer-yaml`](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-yaml)
28+
- Docs: [creating a transformer plugin](/docs/creating-a-transformer-plugin/)
2829
- **`gatsby-[plugin-name]-*`** — if a plugin is a plugin for another plugin 😅, it should be prefixed with the name of the plugin it extends (e.g. if it adds emoji to the output of `gatsby-transformer-remark`, call it `gatsby-remark-add-emoji`). Use this naming convention whenever your plugin will be included as a plugin in the `options` object of another plugin.
2930
- Example: [`gatsby-remark-images`](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-images)
3031
- **`gatsby-plugin-*`** — this is the most general plugin type. Use this naming convention if your plugin doesn’t meet the requirements of any other plugin types.

0 commit comments

Comments
 (0)