Docs: Use h2 headers within Quick Start documentation (#2241) · gulpjs/gulp@921312c

@@ -9,7 +9,7 @@ sidebar_label: Quick Start

991010

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

111112-

### 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

25252626

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

272728-

### Install the gulp command line utility

28+

## Install the gulp command line utility

2929

```sh

3030

npm install --global gulp-cli

3131

```

3232333334-

### 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

```

414142-

### 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

```

46464747

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

484849-

### 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

```

535354-

### Verify your gulp versions

54+

## Verify your gulp versions

55555656

```sh

5757

gulp --version

@@ -61,7 +61,7 @@ Ensure the output matches the screenshot below or you might need to restart the

61616262

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

636364-

### 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

```

747475-

### 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>`.

818182-

### Result

82+

## Result

8383

The default task will run and do nothing.

8484

![Output: Starting default & Finished default][img-gulp-command]

8585