Skip to content

Commit 55f250c

Browse files
committed
docs: remove quotes from echo
1 parent 9e63974 commit 55f250c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ footer: MIT Licensed | Copyright © 2018-present Evan You
2020
npm install -g vuepress
2121

2222
# create a markdown file
23-
echo "# Hello VuePress" > README.md
23+
echo # Hello VuePress > README.md
2424

2525
# start writing
2626
vuepress dev

docs/guide/getting-started.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ If you just want to play around with VuePress, you can install it globally:
99
npm install -g vuepress
1010

1111
# create a markdown file
12-
echo "# Hello VuePress" > README.md
12+
echo # Hello VuePress > README.md
1313

1414
# start writing
1515
vuepress dev
@@ -29,7 +29,7 @@ npm install -D vuepress
2929
# create a docs directory
3030
mkdir docs
3131
# create a markdown file
32-
echo "# Hello VuePress!" > docs/README.md
32+
echo # Hello VuePress > docs/README.md
3333

3434
# start writing
3535
npx vuepress dev docs

0 commit comments

Comments
 (0)