1
0
Fork 0

fix(docs): Updates and corrections for FreeSewing in different environments

This commit is contained in:
Benjamin F 2023-01-06 17:51:53 -08:00
parent 4fee5afa6e
commit 13a90365f6
3 changed files with 18 additions and 14 deletions

View file

@ -8,14 +8,15 @@ you can generate patterns in the browser with a few lines of JavaScript.
<Tip>
##### Use FreeSewing.org if you just want a pattern
##### Use freesewing.org if you just want a pattern
These instructions are intended for people who want to generate
their own patterns. If you _just want a sewing pattern_ you can
get all our designs on [FreeSewing.org](https://FreeSewing.org/),
their own patterns using FreeSewing packages.
If you _just want a sewing pattern created for you,_
you can get all our designs on [freesewing.org](https://freesewing.org/),
our website for makers.
</Tip>
</Tip>
## High level overview
@ -58,7 +59,7 @@ Below is a complete example.
<script type="module">
import Aaron from 'https://cdn.skypack.dev/@freesewing/aaron';
import theme from 'https://cdn.skypack.dev/@freesewing/plugin-theme';
const svg = new Aaron({
const svg = new Aaron({
sa: 10, // Seam allowance
paperless: true, // Enable paperless mode
// More settings, see: https://FreeSewing.dev/reference/settings
@ -86,7 +87,7 @@ Below is a complete example.
## Dependencies
If you compare this example with [our NodeJS
If you compare this example with [our Node.js
example](/howtos/environments/nodejs) you'll notice that you do not
need to worry about loading any dependencies. Not even `@freesewing/core`
is loaded, because Skypack will pull in all dependencies for you.