Skip to content

Commit

Permalink
docs: destructured some sentences (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bram Ceulemans committed May 5, 2021
1 parent cb472b2 commit 060f31a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions docs/custom/directory-structure.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Directory Structure

Slidev uses some directory stricture conventions to minimalize the configure surface and make the functionality extensions flexible and intuitive.
Slidev uses directory structure conventions to minimalize the configuration surface and make extensions in functionality flexible and intuitive.

The basic structure will be like
The basic structure will be:

```bash
your-slidev/
Expand Down
2 changes: 1 addition & 1 deletion docs/custom/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Check out the [type definition](https://github.com/slidevjs/slidev/blob/main/pac

## Directory Structure

Slidev uses some directory stricture conventions to minimalize the configure surface and make the functionality extensions flexible and intuitive.
Slidev uses directory structure conventions to minimalize the configuration surface and make extensions in functionality flexible and intuitive.

Refer to the [Directory Structure](/custom/directory-structure) section.

Expand Down
2 changes: 1 addition & 1 deletion docs/guide/syntax.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Markdown Syntax

Slides can be written within **a single markdown file** (by default `./slides.md`).
Slides are written within **a single markdown file** (by default `./slides.md`).

You can use [the Markdown features](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet) as you normally would, with the additional support of inlined HTML and Vue Components. Styling using [Windi CSS](https://windicss.org) is also supported. Use `---` padded with a new line to separate your slides.

Expand Down
1 change: 0 additions & 1 deletion docs/guide/why.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ Slidev is powered by [Vite](https://vitejs.dev/), [Vue 3](https://v3.vuejs.org/)

Find more about [our tech stack](/guide/#tech-stack).


## Interactive & Expressive

You can write custom Vue components and use them directly inside your markdown file. You can also interact with them inside the presentation to express your idea in a more interserting and intuitive way.
Expand Down
6 changes: 3 additions & 3 deletions docs/themes/use.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
# Use Theme

Change the theme in Slidev is surprisingly easy. All you need to do is to add the `theme:` field in your frontmatter.
Changing the theme in Slidev is surprisingly easy. All you need to do is to add the `theme:` field in your frontmatter.

```yaml
---
theme: seriph
---
```

You can either directly start the server and it will show up the prompt to install the theme automatically for you
You can start the server, which will prompt you to install the theme automatically

<div class="language-md">
<pre>
<span class="token keyword">?</span> Does not found theme <span class="token string">"@slidev/theme-seriph"</span> in your project, do you want to install it now? › (Y/n)
</pre>
</div>

or you can install the theme manually via
or install the theme manually via

```bash
$ npm install @slidev/theme-seriph
Expand Down

0 comments on commit 060f31a

Please sign in to comment.