chore: Port FreeSewing.dev to docusaurus
The replaces the NextJS site powering FreeSewing.dev with a Docusaurus setup. It's part of my efforts to simplify FreeSewing's setup so we can focus on our core value proposition.
This commit is contained in:
parent
497633d1d3
commit
ab3204f9f1
692 changed files with 11037 additions and 20674 deletions
30
sites/dev/docs/reference/api/pattern/render/readme.mdx
Normal file
30
sites/dev/docs/reference/api/pattern/render/readme.mdx
Normal file
|
@ -0,0 +1,30 @@
|
|||
---
|
||||
title: Pattern.render()
|
||||
---
|
||||
|
||||
The `Pattern.render()` method will render the pattern to SVG and return
|
||||
that SVG as a string. It should only be called after calling
|
||||
[Pattern.draft()](/reference/api/pattern/draft/) first.
|
||||
|
||||
## Pattern.render() signature
|
||||
|
||||
```js
|
||||
string pattern.render()
|
||||
```
|
||||
|
||||
## Pattern.render() example
|
||||
|
||||
```js
|
||||
import { Aaron } from "@freesewing/aaron"
|
||||
|
||||
// Load some public test measurements from the FreeSewing backend
|
||||
const measurements = (
|
||||
await (
|
||||
await fetch("https://backend3.freesewing.org/curated-sets/1.json")
|
||||
).json()
|
||||
).measurements
|
||||
|
||||
const pattern = new Aaron({ measurements })
|
||||
|
||||
const svg = pattern.draft().render()
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue