Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
docs: use implicit truthy of boolean CodeBlock attribute
  • Loading branch information
d-pollard committed Sep 2, 2020
commit a19519620210bdc447cdc989e02d7c21fc95b107
8 changes: 4 additions & 4 deletions packages/docs/docs/guide/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The fastest way to get your VuePress project setup is to use our [create-vuepres
To use it, open up your terminal in the desired directory and run the following command:

<code-group>
<code-block title="YARN" :active="true">
<code-block title="YARN" active>
```bash
yarn create vuepress-site [optionalDirectoryName]
```
Expand Down Expand Up @@ -50,7 +50,7 @@ This section will help you build a basic VuePress documentation site from ground
2. Initialize with your preferred package manager

<code-group>
<code-block title="YARN" :active="true">
<code-block title="YARN" active>
```bash
yarn init
```
Expand All @@ -66,7 +66,7 @@ This section will help you build a basic VuePress documentation site from ground
3. Install VuePress locally

<code-group>
<code-block title="YARN" :active="true">
<code-block title="YARN" active>
```bash
yarn add -D vuepress
```
Expand Down Expand Up @@ -101,7 +101,7 @@ This section will help you build a basic VuePress documentation site from ground
6. Serve the documentation site in the local server

<code-group>
<code-block title="YARN" :active="true">
<code-block title="YARN" active>
```bash
yarn docs:dev
```
Expand Down