Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc/api
diff options
context:
space:
mode:
authorNick Schonning <nschonni@gmail.com>2019-08-30 07:10:19 +0300
committerRuben Bridgewater <ruben@bridgewater.de>2019-09-04 17:48:26 +0300
commit4a7c4b73669722bb403a4e59b4a12f4717a562d2 (patch)
tree11aeb69f69b3b875bda6b48ffc6e8c3b14cb8e56 /doc/api
parent256da1fdb301fd29bd6b6130d0e9ef4c0de1a573 (diff)
doc: escape elements swallowed as HTML in markdown
Addresses Markdownlint MD033 issues. Altering changlog should usually be avoided, but they don't render currently. PR-URL: https://github.com/nodejs/node/pull/29374 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Diffstat (limited to 'doc/api')
-rw-r--r--doc/api/tls.md9
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/api/tls.md b/doc/api/tls.md
index 6741144151d..90b377f5b5a 100644
--- a/doc/api/tls.md
+++ b/doc/api/tls.md
@@ -1432,10 +1432,11 @@ changes:
PEM allows the option of private keys being encrypted. Encrypted keys will
be decrypted with `options.passphrase`. Multiple keys using different
algorithms can be provided either as an array of unencrypted key strings or
- buffers, or an array of objects in the form `{pem: <string|buffer>[,
- passphrase: <string>]}`. The object form can only occur in an array.
- `object.passphrase` is optional. Encrypted keys will be decrypted with
- `object.passphrase` if provided, or `options.passphrase` if it is not.
+ buffers, or an array of objects in the form
+ `{pem: <string|buffer>[, passphrase: <string>]}`. The object form can only
+ occur in an array. `object.passphrase` is optional. Encrypted keys will be
+ decrypted with `object.passphrase` if provided, or `options.passphrase` if
+ it is not.
* `maxVersion` {string} Optionally set the maximum TLS version to allow. One
of `TLSv1.3`, `TLSv1.2'`, `'TLSv1.1'`, or `'TLSv1'`. Cannot be specified
along with the `secureProtocol` option, use one or the other.