Skip to content

Commit 921312c

Browse files
janiceilenephated
authored andcommitted
Docs: Use h2 headers within Quick Start documentation (#2241)
1 parent 49b5aca commit 921312c

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

Diff for: docs/getting-started/1-quick-start.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ sidebar_label: Quick Start
99

1010
If you've previously installed gulp globally, run `npm rm --global gulp` before following these instructions. For more information, read this [Sip][sip-article].
1111

12-
### Check for node, npm, and npx
12+
## Check for node, npm, and npx
1313
```sh
1414
node --version
1515
```
@@ -25,33 +25,33 @@ npx --version
2525

2626
If they are not installed, follow the instructions [here][node-install].
2727

28-
### Install the gulp command line utility
28+
## Install the gulp command line utility
2929
```sh
3030
npm install --global gulp-cli
3131
```
3232

3333

34-
### Create a project directory and navigate into it
34+
## Create a project directory and navigate into it
3535
```sh
3636
npx mkdirp my-project
3737
```
3838
```sh
3939
cd my-project
4040
```
4141

42-
### Create a package.json file in your project directory
42+
## Create a package.json file in your project directory
4343
```sh
4444
npm init
4545
```
4646

4747
This will guide you through giving your project a name, version, description, etc.
4848

49-
### Install the gulp package in your devDependencies
49+
## Install the gulp package in your devDependencies
5050
```sh
5151
npm install --save-dev gulp@next
5252
```
5353

54-
### Verify your gulp versions
54+
## Verify your gulp versions
5555

5656
```sh
5757
gulp --version
@@ -61,7 +61,7 @@ Ensure the output matches the screenshot below or you might need to restart the
6161

6262
![Output: CLI version 2.0.1 & Local version 4.0.0][img-gulp-version-command]
6363

64-
### Create a gulpfile
64+
## Create a gulpfile
6565
Using your text editor, create a file named gulpfile.js in your project root with these contents:
6666
```js
6767
function defaultTask(cb) {
@@ -72,14 +72,14 @@ function defaultTask(cb) {
7272
exports.default = defaultTask
7373
```
7474

75-
### Test it
75+
## Test it
7676
Run the gulp command in your project directory:
7777
```sh
7878
gulp
7979
```
8080
To run multiple tasks, you can use `gulp <task> <othertask>`.
8181

82-
### Result
82+
## Result
8383
The default task will run and do nothing.
8484
![Output: Starting default & Finished default][img-gulp-command]
8585

0 commit comments

Comments
 (0)