You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -232,7 +232,7 @@ content: <content of the file> # optional
232
232
contentPath: <relative path to the file> # optional
233
233
insertTypingMode: <typing mode: 'instant', 'line-by-line', 'character-by-character' or 'hacker-typer'> # optional, default is 'instant'
234
234
insertTypingSpeed: <delay in milliseconds to insert> # Optional
235
-
```
235
+
```
236
236
237
237
</TabItem>
238
238
</Tabs>
@@ -454,7 +454,7 @@ action: delete
454
454
path: <relative path to the file>
455
455
startPlaceholder: <start placeholder>
456
456
endPlaceholder: <end placeholder>
457
-
```
457
+
```
458
458
459
459
</TabItem>
460
460
</Tabs>
@@ -548,14 +548,14 @@ const ext = 'Demo Time';
548
548
549
549
## Typing modes
550
550
551
-
When inserting or replacing text, you can specify the typing mode with the `insertTypingMode` property or on global level with the `demoTime.insertTypingMode` setting.
551
+
When inserting or replacing text, you can specify the typing mode with the `insertTypingMode` property or on global level with the `demoTime.insertTypingMode` setting.
552
552
553
553
The available options are:
554
554
555
555
- `instant`: The text is inserted instantly.
556
556
- `line-by-line`: The text is inserted line by line, with a delay between each line.
557
557
- `character-by-character`: The text is inserted character by character, with a delay between each character.
558
-
- `hacker-typer`: The text is inserted in a hacker-typer style, where you are in control over the character instertion by pressing the `down` key (default key binding which can be changed in the keybindings settings).
558
+
- `hacker-typer`: The text is inserted in a hacker-typer style, where you are in control over the character insertion by pressing the `down` key (default key binding which can be changed in the keybindings settings).
Copy file name to clipboardExpand all lines: docs/src/content/docs/adding-demos.mdx
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -267,7 +267,7 @@ For example, if you want to highlight a piece of code, you can select the code a
267
267
3. Click on the `highlight` action in the command palette.
268
268
269
269
<Image class="mx-auto" src={demoStepImage} alt="Add a demo step from the "Demo Time: Add demo step" command" />
270
-
270
+
271
271
4. Select the demo file in which you want to add the step (only if you have multiple demo files).
272
272
5. Select if you want to add it to an existing demo or create a new one.
273
273
@@ -285,7 +285,7 @@ From the **Config Editor**, you have the ability to try out the configured demo/
285
285
286
286
You are also able to add notes to your demos. These notes can be used to provide additional information for yourself or others who will be executing the demo.
287
287
288
-
The notes should be created as a markdown file.
288
+
The notes should be created as a markdown file.
289
289
290
290
<Tabs>
291
291
<TabItem label="Config Editor">
@@ -338,8 +338,8 @@ notes:
338
338
339
339
## Implementing other demos and steps
340
340
341
-
You can add more demos and steps to the `demos` array. In the [actions section](/actions/) of the documenation, you can find all the available actions you can use to create your demos.
341
+
You can add more demos and steps to the `demos` array. In the [actions section](/actions/) of the documentation, you can find all the available actions you can use to create your demos.
342
342
343
343
<Aside type="note">
344
344
If you want to split your demos in multiple sections, you can do this by creating multiple demo files in the `.demo` folder. The extension will automatically recognize them and display them in the **Demo Time** view.
0 commit comments