1
0
Fork 0

chore(markdown): Avoid inline JSX where possible

This commit is contained in:
Joost De Cock 2022-01-19 13:06:33 +01:00
parent 25995944d9
commit ad10523a8a
9 changed files with 9 additions and 9 deletions

View file

@ -3,7 +3,7 @@ title: Configuration
order: 10
---
<Example part="docs_overview" options={{focus: "config"}}>
<Example part="docs_overview" options_focus="config">
The pattern configuration holds important information about the pattern

View file

@ -3,7 +3,7 @@ title: Parts
order: 20
---
<Example part="docs_overview" options={{focus: "Part"}}>
<Example part="docs_overview" options_focus="Part">
Parts divide your pattern into re-usable components
</Example>

View file

@ -3,7 +3,7 @@ title: Paths
order: 40
---
<Example part="docs_overview" options={{focus: "Paths"}}>
<Example part="docs_overview" options_focus="Paths">
Paths are the lines and curves of your pattern
</Example>

View file

@ -3,7 +3,7 @@ title: Pattern
order: 80
---
<Example part="docs_overview" options={{focus: "Pattern"}}>
<Example part="docs_overview" options_focus="Pattern">
The pattern you create will be a constructor for instances of your pattern
</Example>

View file

@ -3,7 +3,7 @@ title: Points
order: 30
---
<Example part="docs_overview" options={{focus: "Points"}}>
<Example part="docs_overview" options_focus="Points">
Points store coordinates
</Example>

View file

@ -3,7 +3,7 @@ title: Snippets
order: 50
---
<Example part="docs_overview" options={{focus: "Snippets"}}>
<Example part="docs_overview" options_focus="Snippets">
Snippets are little embelishments that go on your pattern
</Example>

View file

@ -3,7 +3,7 @@ title: Store
order: 60
---
<Example part="docs_overview" options={{focus: "Store"}}>
<Example part="docs_overview" options_focus="Store">
The store provides pattern-wide key/value storage
</Example>

View file

@ -17,7 +17,7 @@ In FreeSewing, we use so-called cubic Bézier curves which have:
- A second control point thats linked to the end point
- An end point
<Example settings={{complete: false}} part="path_curve">
<Example settings_complete="0" part="path_curve">
An example of a Bézier curve drawn by the Path.curve() method
</Example>