diff --git a/markdown/dev/guides/plugins/loading/en.md b/markdown/dev/guides/plugins/loading/en.md index b6fb025af73..6eb462ee494 100644 --- a/markdown/dev/guides/plugins/loading/en.md +++ b/markdown/dev/guides/plugins/loading/en.md @@ -3,7 +3,7 @@ title: Loading plugins order: 140 --- -Plugins can be loaded at build time and added to the desig. Or at run time and added to an instantiated pattern. +Plugins can be loaded at build time and added to the design. Or at run time and added to an instantiated pattern. To load a plugin at build time, it should be added to [the `plugins` key of the part configuration](/reference/api/part/config/plugins). diff --git a/markdown/dev/reference/plugins/bust/en.md b/markdown/dev/reference/plugins/bust/en.md index 195218003e3..9ce8e912962 100644 --- a/markdown/dev/reference/plugins/bust/en.md +++ b/markdown/dev/reference/plugins/bust/en.md @@ -54,8 +54,8 @@ You can see this in practice in our [Carlita][2] pattern, which extends the menswear [Carlton][3] pattern. -To learn more about extending a pattern, see [Design -inheritance](/howtos/code/inheritance/) +To learn more about extending a pattern, see [Part +inheritance](/howtos/code/from/) ### Use when creating gender-neutral patterns @@ -65,17 +65,17 @@ if they are present — you can use this plugin, but you'll also need a few othe things: - You'll need to mark the breast measurements as [optional - measurements](/reference/api/config/optionalmeasurements) + measurements](/reference/api/part/config/measurements#optionalmeasurements) - You'll need to [conditionally load this - plugin](/guides/plugins/conditionally-loading-build-time-plugins) + plugin](/reference/api/part/config/plugins#conditional-plugins) You can see an example of this in [our Teagan design][4]. [1]: https://www.npmjs.com/package/@freesewing/plugin-banner -[2]: https://github.com/freesewing/freesewing/blob/develop/designs/carlita/src/index.js#L12 +[2]: https://github.com/freesewing/freesewing/blob/develop/designs/carlita/src/index.mjs#L25 [3]: https://github.com/freesewing/freesewing/blob/develop/designs/carlton -[4]: https://github.com/freesewing/freesewing/blob/develop/designs/teagan/src/index.js +[4]: https://github.com/freesewing/freesewing/blob/develop/designs/teagan/src/index.mjs