1
0
Fork 0

Revert "chore: Linting for markdown and js"

This reverts commit 1c92e0f655.
This commit is contained in:
joostdecock 2021-10-17 18:26:00 +02:00
parent 994874fa72
commit cba1ab19c8
6627 changed files with 25791 additions and 24211 deletions

View file

@ -1,9 +1,8 @@
***
---
title: Part dependencies
for: developers
about: Shows you how to create dependencies between pattern parts
-----------------------------------------------------------------
---
Part dependencies are set in the [pattern configuration](/reference/config), and
control the order in which parts are drawn. FreeSewing will make sure
@ -19,7 +18,7 @@ dependencies: {
}
```
This could be from a T-shirt pattern where the `front` and `back` patterns are very similar,
This could be from a T-shirt pattern where the `front` and `back` patterns are very similar,
so they both are inheriting a `base` part.
In addition, the `sleeve` part needs to be drafted after the `front` and `back` part because
in `front` and `back` we store the length of the armhole seam in the [store](/reference/api/store) and
@ -27,9 +26,9 @@ we need that info to fit the sleevecap to the armhole.
Now if a user requests to draft only the `sleeve` part, FreeSewing will still draft:
* First the `base` part
* Then the `front` and `back` parts
* Finally the `sleeve` part
- First the `base` part
- Then the `front` and `back` parts
- Finally the `sleeve` part
but it will only render the `sleeve` part, as that's the only thing the user requested.