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
Copy file name to clipboardExpand all lines: docs/guide/syntax.md
+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
@@ -66,15 +66,15 @@ Refer to [supported frontmatter fields](/guide/frontmatter-fields) for more deta
66
66
67
67
### Code Snippet
68
68
69
-
A big reason I am making this is that I need to make code looks right in the slides. So just as you expected, you can use markdown favored code block to highlight your code.
69
+
A big reason I am making this is that I need to make my code looks just right in the slides. So just as you expected, you can use Markdown favored code block to highlight your code.
70
70
71
71
~~~md
72
72
```ts
73
73
console.log('HelloWorld')
74
74
```
75
75
~~~
76
76
77
-
Whenever you want to do some modification in the presentation, simply add `{monaco}` after the language id, it will turn the block into a full-featured Monaco editor!
77
+
Whenever you want to do some modification in the presentation, simply add `{monaco}` after the language id, it turns the block into a full-featured Monaco editor!
78
78
79
79
~~~md
80
80
```ts{monaco}
@@ -118,7 +118,7 @@ All the configurations needed can also be defined in the Markdown file. For exam
Copy file name to clipboardExpand all lines: docs/guide/why.md
+9-5Lines changed: 9 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,19 +4,21 @@
4
4
5
5
There are a lot of feature-rich, general-purpose, WYSIWYG slides makers like [Microsoft PowerPoint](https://www.microsoft.com/en-us/microsoft-365/powerpoint) and [Apple Keynote](https://www.apple.com/keynote/). They work pretty well on making nice slides with animations, charts, and many other things, while being very intuitive and easy to learn. So why bother making Slidev?
6
6
7
-
Slidev is trying to provide the flexibility and interactivity for developers to make their presentation even more interesting, expressive, and attractive by using the tools and technologies they are already familiar with. Slidev separates the content and visual to make you focus on one thing at a time, while being able to share and use the themes with the community.
7
+
Slidev is trying to provide the flexibility and interactivity for developers to make their presentation even more interesting, expressive, and attractive by using the tools and technologies they are already familiar with. Slidev separates the content and visuals. This allows you to focus on one thing at a time, while being able to reuse the themes from the community.
8
8
9
-
While Slidev will never tend to replace those slides apps and being beginnerfriendly, here is a few notions and highlights of Slidev:
9
+
While Slidev will never tend to replace those slides apps and being beginner-friendly, here is a few notions and highlights of Slidev:
10
10
11
11
## Slidev
12
12
13
13
### Text-based
14
14
15
15
Slidev uses an extended Markdown format to store and organize your slides in a single plain text file. This lets you focus on making the content. And since the content and styles are separated, this also made it possible to switch between different themes effortlessly.
16
16
17
+
Learn mode about the slides [Markdown Syntax](/guide/syntax).
18
+
17
19
### Themable
18
20
19
-
Themes for Slidev can be shared and installed using npm packages. And apply them with only one line of config. Check out the [theme gallery](/guide/theme-gallery) or [how to write a theme](/guide/write-a-theme).
21
+
Themes for Slidev can be shared and installed using npm packages. And apply them with only one line of config. Check out the [theme gallery](/themes/gallery) or [how to write a theme](/themes/write-a-theme).
20
22
21
23
### Developer Friendly
22
24
@@ -28,12 +30,14 @@ You can write custom components and use them directly inside your markdown file.
28
30
29
31
### Recording Support
30
32
31
-
Slidev provides built-in recording and camera view. You can share your presentation with your camera view inside, or record and save seperately for your screen and camera. All with one go, no addition tools needed.
33
+
Slidev provides built-in recording and camera view. You can share your presentation with your camera view inside, or record and save seperately for your screen and camera. All with one go, no additional tools are needed.
34
+
35
+
Learn more about the [recording here](/guide/recording).
32
36
33
37
### Portable
34
38
35
39
Export your slides into PDF, PNGs, or even a hostable Single-page Application (SPA) with a single command, and share them anywhere.
36
40
37
41
### Hackable
38
42
39
-
Since Slidev is powered by web technologies, anything that can be done with web apps are also possible with Slidev. For example, WebGL, API requesting, Iframes or even live sharing, it's up to your imaginations!
43
+
Since Slidev is powered by web technologies, anything that can be done with web apps are also possible with Slidev. For example, WebGL, API requesting, iframes, or even live sharing, it's up to your imaginations!
0 commit comments