Skip to content

Commit

Permalink
docs: Application (#34)
Browse files Browse the repository at this point in the history
Co-authored-by: Igor Randjelovic <rigor789@gmail.com>
Co-authored-by: Nathan Walker <walkerrunpdx@gmail.com>
  • Loading branch information
3 people authored Jul 31, 2023
1 parent a707567 commit f6bfd5f
Show file tree
Hide file tree
Showing 10 changed files with 8,256 additions and 15,564 deletions.
2 changes: 1 addition & 1 deletion .vitepress/theme/style.css

Large diffs are not rendered by default.

23,183 changes: 7,637 additions & 15,546 deletions .vitepress/theme/vitepress-theme.mjs

Large diffs are not rendered by default.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
42 changes: 41 additions & 1 deletion content/dev-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,49 @@ For example:
SOMETHING SOMETHING

```ts
asd;
asd
```

</Tab>

</Tabs>

## StepList

To notate steps from a screenshot, or steps in general, you can wrap any list with the `<StepList>` component to style the list.

**Example**:

```md
<StepList>

1. This is a test step list, that should render the bullets on the left in a red circle
2. This is the second step
3. Then there's the **third** step
4. And a **fourth**
5. It can go...
6. On, and on...
7. And on and on...
8. Until we run out of things to say
9. But the list should handle **double digit** step counters just fine, as well as lines that wrap to multiple lines in case we have lots of words to say about a given step, beause sometimes steps just need that extra bit of explanation to properly make sense to the reader.
10. Finally, we can see those **double digits** in action right here.

</StepList>
```

---

<StepList>

1. This is a test step list, that should render the bullets on the left in a red circle
2. This is the second step
3. Then there's the **third** step
4. And a **fourth**
5. It can go...
6. On, and on...
7. And on and on...
8. Until we run out of things to say
9. But the list should handle **double digit** step counters just fine, as well as lines that wrap to multiple lines in case we have lots of words to say about a given step, beause sometimes steps just need that extra bit of explanation to properly make sense to the reader.
10. Finally, we can see those **double digits** in action right here.

</StepList>
Loading

0 comments on commit f6bfd5f

Please sign in to comment.