@@ -11,7 +11,7 @@ You can get started using one of three options- `npx`, `npm init`, or
11
11
12
12
Using ` npx `
13
13
14
- ``` sh
14
+ ```
15
15
npx create-html5-boilerplate new-site
16
16
cd new-site
17
17
npm install
@@ -20,7 +20,7 @@ npm start
20
20
21
21
Using ` npm init `
22
22
23
- ``` sh
23
+ ```
24
24
npm init create-html5-boilerplate new-site
25
25
cd new-site
26
26
npm install
@@ -29,7 +29,7 @@ npm start
29
29
30
30
Using yarn
31
31
32
- ``` sh
32
+ ```
33
33
yarn create html5-boilerplate new-site
34
34
cd new-site
35
35
yarn install
@@ -40,7 +40,7 @@ These commands are equivalent and do the following:
40
40
41
41
1 . Dowload and install the latest version of HTML5 Boilerplate
42
42
2 . Installs dependencies
43
- 3 . Bundles site assets and tart a web server using [ ` parcel ` ] ( https://parceljs.org/ )
43
+ 3 . Bundles site assets and start a web server using [ parcel] ( https://parceljs.org/ )
44
44
4 . Opens a web browser pointed to http://localhost:1234/
45
45
46
46
## Requirements
@@ -51,13 +51,13 @@ The only requirements are for `npx`, which requires npm version 5.2 or greater a
51
51
older version of npm you can still use ` create-html5-boilerplate ` by running the
52
52
following command to install the project globally.
53
53
54
- ``` sh
54
+ ```
55
55
npm install -g create-html5-boilerplate
56
56
```
57
57
58
58
Then you can use ` create-html5-boilerplate ` as in the following example
59
59
60
- ``` sh
60
+ ```
61
61
create-html5-boilerplate new-site
62
62
cd new-site
63
63
npm install
@@ -68,7 +68,7 @@ npm start
68
68
69
69
You can also install a specific version:
70
70
71
- ``` sh
71
+ ```
72
72
npx create-html5-boilerplate new-site --release=7.2.0
73
73
cd new-site
74
74
npm install
0 commit comments