doc: start unorded lists at start of line

Address Markdownlint MD006 rule.
Can flag when list items aren't indented far enough.

PR-URL: https://github.com/nodejs/node/pull/29390
Reviewed-By: David Carlier <devnexen@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
This commit is contained in:
Nick Schonning 2019-09-01 02:08:20 -04:00 committed by Rich Trott
parent 3c84556654
commit 27a57d3a34
13 changed files with 706 additions and 703 deletions

View File

@ -4050,6 +4050,7 @@ if it is null-terminated.
Returns `napi_ok` if the API succeeded. Returns `napi_ok` if the API succeeded.
Defines a JavaScript class that corresponds to a C++ class, including: Defines a JavaScript class that corresponds to a C++ class, including:
- A JavaScript constructor function that has the class name and invokes the - A JavaScript constructor function that has the class name and invokes the
provided C++ constructor callback. provided C++ constructor callback.
- Properties on the constructor function corresponding to _static_ data - Properties on the constructor function corresponding to _static_ data

View File

@ -1642,6 +1642,7 @@ A fix for the following CVE is included in this release:
* add inspection getter option (Ruben Bridgewater) [#24852](https://github.com/nodejs/node/pull/24852) * add inspection getter option (Ruben Bridgewater) [#24852](https://github.com/nodejs/node/pull/24852)
### Commits ### Commits
* [[`bf4faf3ffc`](https://github.com/nodejs/node/commit/bf4faf3ffc)] - **assert,util**: harden comparison (Ruben Bridgewater) [#24831](https://github.com/nodejs/node/pull/24831) * [[`bf4faf3ffc`](https://github.com/nodejs/node/commit/bf4faf3ffc)] - **assert,util**: harden comparison (Ruben Bridgewater) [#24831](https://github.com/nodejs/node/pull/24831)
* [[`302081bafc`](https://github.com/nodejs/node/commit/302081bafc)] - **build**: make lint-addon-docs run only if needed (Daniel Bevenius) [#24993](https://github.com/nodejs/node/pull/24993) * [[`302081bafc`](https://github.com/nodejs/node/commit/302081bafc)] - **build**: make lint-addon-docs run only if needed (Daniel Bevenius) [#24993](https://github.com/nodejs/node/pull/24993)
* [[`cc8a805e31`](https://github.com/nodejs/node/commit/cc8a805e31)] - **build**: fix compiler version detection (Richard Lau) [#24879](https://github.com/nodejs/node/pull/24879) * [[`cc8a805e31`](https://github.com/nodejs/node/commit/cc8a805e31)] - **build**: fix compiler version detection (Richard Lau) [#24879](https://github.com/nodejs/node/pull/24879)

View File

@ -2079,6 +2079,7 @@ This release also includes over 70 fixes to our docs and over 50 fixes to tests.
### Notable changes ### Notable changes
The SEMVER-MINOR changes include: The SEMVER-MINOR changes include:
* **deps**: * **deps**:
- An update to v8 that introduces a new flag --perf_basic_prof_only_functions (Ali Ijaz Sheikh) [#3609](https://github.com/nodejs/node/pull/3609) - An update to v8 that introduces a new flag --perf_basic_prof_only_functions (Ali Ijaz Sheikh) [#3609](https://github.com/nodejs/node/pull/3609)
* **http**: * **http**:

View File

@ -221,10 +221,10 @@ This is a security release. All Node.js users should consult the security releas
### Notable changes ### Notable changes
**http**: * **http**:
* Enclose IPv6 Host header in square brackets. This will enable proper separation of the host address from any port reference (Mihai Potra) [#5314](https://github.com/nodejs/node/pull/5314) * Enclose IPv6 Host header in square brackets. This will enable proper separation of the host address from any port reference (Mihai Potra) [#5314](https://github.com/nodejs/node/pull/5314)
**path**: * **path**:
* Make win32.isAbsolute more consistent (Brian White) [#6028](https://github.com/nodejs/node/pull/6028) * Make win32.isAbsolute more consistent (Brian White) [#6028](https://github.com/nodejs/node/pull/6028)
### Commits ### Commits