Skip to content

Commit

Permalink
doc: add blanks around code fences
Browse files Browse the repository at this point in the history
Addresses Markdownlint MD031 rule warnings

PR-URL: #29366
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Gus Caplan <me@gus.host>
Reviewed-By: David Carlier <devnexen@gmail.com>
  • Loading branch information
nschonni authored and Trott committed Aug 31, 2019
1 parent ee8f02b commit 9ab1e07
Show file tree
Hide file tree
Showing 23 changed files with 212 additions and 5 deletions.
3 changes: 3 additions & 0 deletions BUILDING.md
Expand Up @@ -665,16 +665,19 @@ during configuration if the ICU version is too old.
#### Unix/macOS

From an already-unpacked ICU:

```console
$ ./configure --with-intl=[small-icu,full-icu] --with-icu-source=/path/to/icu
```

From a local ICU tarball:

```console
$ ./configure --with-intl=[small-icu,full-icu] --with-icu-source=/path/to/icu.tgz
```

From a tarball URL:

```console
$ ./configure --with-intl=full-icu --with-icu-source=http://url/to/icu.tgz
```
Expand Down
1 change: 1 addition & 0 deletions CPP_STYLE_GUIDE.md
Expand Up @@ -185,6 +185,7 @@ class FancyContainer {
...
}
```

## Memory Management

### Memory allocation
Expand Down
1 change: 1 addition & 0 deletions doc/api/child_process.md
Expand Up @@ -168,6 +168,7 @@ generated output. The `command` string passed to the exec function is processed
directly by the shell and special characters (vary based on
[shell](https://en.wikipedia.org/wiki/List_of_command-line_interpreters))
need to be dealt with accordingly:

```js
exec('"/path/to/test file/test.sh" arg1 arg2');
// Double quotes are used so that the space in the path is not interpreted as
Expand Down
1 change: 1 addition & 0 deletions doc/api/cli.md
Expand Up @@ -70,6 +70,7 @@ added: v10.12.0
-->

Print source-able bash completion script for Node.js.

```console
$ node --completion-bash > node_bash_completion
$ source node_bash_completion
Expand Down
1 change: 1 addition & 0 deletions doc/api/console.md
Expand Up @@ -498,6 +498,7 @@ This method does not display anything unless used in the inspector. The
`console.profile()` method starts a JavaScript CPU profile with an optional
label until [`console.profileEnd()`][] is called. The profile is then added to
the **Profile** panel of the inspector.

```js
console.profile('MyLabel');
// Some code
Expand Down
1 change: 1 addition & 0 deletions doc/api/crypto.md
Expand Up @@ -716,6 +716,7 @@ const dh = crypto.createDiffieHellmanGroup(name);
```

`name` is taken from [RFC 2412][] (modp1 and 2) and [RFC 3526][]:

```console
$ perl -ne 'print "$1\n" if /"(modp\d+)"/' src/node_crypto_groups.h
modp1 # 768 bits
Expand Down
1 change: 1 addition & 0 deletions doc/api/dgram.md
Expand Up @@ -528,6 +528,7 @@ socket.bind(1234, () => {

#### Example: IPv4 Outgoing Multicast Interface
All systems use an IP of the host on the desired physical interface:

```js
const socket = dgram.createSocket('udp4');

Expand Down
1 change: 1 addition & 0 deletions doc/api/errors.md
Expand Up @@ -70,6 +70,7 @@ Errors that occur within _Asynchronous APIs_ may be reported in multiple ways:
// Otherwise handle the data
});
```

- When an asynchronous method is called on an object that is an
[`EventEmitter`][], errors can be routed to that object's `'error'` event.

Expand Down
1 change: 1 addition & 0 deletions doc/api/esm.md
Expand Up @@ -188,6 +188,7 @@ module via `import`.
"main": "./src/index.js"
}
```

```js
// ./my-app.mjs

Expand Down
2 changes: 2 additions & 0 deletions doc/api/fs.md
Expand Up @@ -231,6 +231,7 @@ fs.readFileSync(new URL('file:///p/a/t/h/%2f'));
/* TypeError [ERR_INVALID_FILE_URL_PATH]: File URL path must not include encoded
/ characters */
```

On Windows, `file:` URLs having encoded backslash will result in a throw:

```js
Expand Down Expand Up @@ -3815,6 +3816,7 @@ recommended.

When `file` is a file descriptor, the behavior is almost identical to directly
calling `fs.write()` like:

```javascript
fs.write(fd, Buffer.from(data, options.encoding), callback);
```
Expand Down
1 change: 1 addition & 0 deletions doc/api/http2.md
Expand Up @@ -2459,6 +2459,7 @@ The `CONNECT` method is used to allow an HTTP/2 server to be used as a proxy
for TCP/IP connections.

A simple TCP Server:

```js
const net = require('net');

Expand Down
1 change: 1 addition & 0 deletions doc/api/https.md
Expand Up @@ -255,6 +255,7 @@ req.on('error', (e) => {
});
req.end();
```

Example using options from [`tls.connect()`][]:

```js
Expand Down

0 comments on commit 9ab1e07

Please sign in to comment.