summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--BUILDING.md4
-rw-r--r--doc/api/deprecations.md2
-rw-r--r--doc/api/errors.md2
-rw-r--r--doc/api/os.md6
-rw-r--r--doc/guides/cve-management-process.md4
-rw-r--r--doc/guides/maintaining-openssl.md4
-rw-r--r--doc/guides/offboarding.md2
-rw-r--r--doc/guides/releases.md2
-rw-r--r--doc/guides/security-release-process.md4
-rw-r--r--doc/guides/using-symbols.md2
-rw-r--r--doc/guides/writing-and-running-benchmarks.md4
-rw-r--r--doc/guides/writing-tests.md2
-rw-r--r--glossary.md2
-rw-r--r--onboarding.md4
-rw-r--r--tools/icu/README.md2
15 files changed, 23 insertions, 23 deletions
diff --git a/BUILDING.md b/BUILDING.md
index a4a00a9f1f..a7dc040f5f 100644
--- a/BUILDING.md
+++ b/BUILDING.md
@@ -204,7 +204,7 @@ For use of AVX2,
* nasm version 2.10 or higher in Windows
Please refer to
- https://www.openssl.org/docs/man1.1.1/man3/OPENSSL_ia32cap.html for details.
+ <https://www.openssl.org/docs/man1.1.1/man3/OPENSSL_ia32cap.html> for details.
If compiling without one of the above, use `configure` with the
`--openssl-no-asm` flag. Otherwise, `configure` will fail.
@@ -277,7 +277,7 @@ $ make -j4
If you run into a `No module named 'distutils.spawn'` error when executing
`./configure`, please try `python3 -m pip install --upgrade setuptools` or
`sudo apt install python3-distutils -y`.
-For more information, see https://github.com/nodejs/node/issues/30189.
+For more information, see <https://github.com/nodejs/node/issues/30189>.
The `-j4` option will cause `make` to run 4 simultaneous compilation jobs which
may reduce build time. For more information, see the
diff --git a/doc/api/deprecations.md b/doc/api/deprecations.md
index f2a82ce1dd..eb055d4c41 100644
--- a/doc/api/deprecations.md
+++ b/doc/api/deprecations.md
@@ -2352,7 +2352,7 @@ The undocumented `net._setSimultaneousAccepts()` function was originally
intended for debugging and performance tuning when using the `child_process`
and `cluster` modules on Windows. The function is not generally useful and
is being removed. See discussion here:
-https://github.com/nodejs/node/issues/18391
+<https://github.com/nodejs/node/issues/18391>
<a id="DEP0122"></a>
### DEP0122: `tls` `Server.prototype.setOptions()`
diff --git a/doc/api/errors.md b/doc/api/errors.md
index ccd4b3b52a..ba8597e4e2 100644
--- a/doc/api/errors.md
+++ b/doc/api/errors.md
@@ -1194,7 +1194,7 @@ is set for the `Http2Stream`.
### `ERR_INTERNAL_ASSERTION`
There was a bug in Node.js or incorrect usage of Node.js internals.
-To fix the error, open an issue at https://github.com/nodejs/node/issues.
+To fix the error, open an issue at <https://github.com/nodejs/node/issues>.
<a id="ERR_INCOMPATIBLE_OPTION_PAIR"></a>
### `ERR_INCOMPATIBLE_OPTION_PAIR`
diff --git a/doc/api/os.md b/doc/api/os.md
index 27a7c3d549..e2cce1f8a5 100644
--- a/doc/api/os.md
+++ b/doc/api/os.md
@@ -290,7 +290,7 @@ Returns the operating system as a string.
On POSIX systems, the operating system release is determined by calling
[uname(3)][]. On Windows, `GetVersionExW()` is used. See
-https://en.wikipedia.org/wiki/Uname#Examples for more information.
+<https://en.wikipedia.org/wiki/Uname#Examples> for more information.
## `os.setPriority([pid, ]priority)`
<!-- YAML
@@ -349,7 +349,7 @@ added: v0.3.3
Returns the operating system name as returned by [uname(3)][]. For example, it
returns `'Linux'` on Linux, `'Darwin'` on macOS, and `'Windows_NT'` on Windows.
-See https://en.wikipedia.org/wiki/Uname#Examples for additional information
+See <https://en.wikipedia.org/wiki/Uname#Examples> for additional information
about the output of running [uname(3)][] on various operating systems.
## `os.uptime()`
@@ -401,7 +401,7 @@ Returns a string identifying the kernel version.
On POSIX systems, the operating system release is determined by calling
[uname(3)][]. On Windows, `RtlGetVersion()` is used, and if it is not available,
`GetVersionExW()` will be used. See
-https://en.wikipedia.org/wiki/Uname#Examples for more information.
+<https://en.wikipedia.org/wiki/Uname#Examples> for more information.
## OS Constants
diff --git a/doc/guides/cve-management-process.md b/doc/guides/cve-management-process.md
index 1b87215ac7..36c2b3a6ca 100644
--- a/doc/guides/cve-management-process.md
+++ b/doc/guides/cve-management-process.md
@@ -3,7 +3,7 @@
The Node.js project acts as a [Common Vulnerabilities and Exposures (CVE)
Numbering Authority (CNA)](https://cve.mitre.org/cve/cna.html).
The current scope is for all actively developed versions of software
-developed under the Node.js project (ie. https://github.com/nodejs).
+developed under the Node.js project (ie. <https://github.com/nodejs>).
This means that the Node.js team reviews CVE requests and if appropriate
assigns CVE numbers to vulnerabilities. The scope currently **does not**
include third party modules.
@@ -56,7 +56,7 @@ as outlined in the section titled `CVE Management process`.
In addition, when moving a CVE from Available such that there are less
than two remaining CVEs a new block must be requested as follows:
-* Use the Mitre request form https://cveform.mitre.org/ with the
+* Use the Mitre request form <https://cveform.mitre.org/> with the
option `Request a Block of IDs` to request a new block.
* The new block will be sent to the requester through email.
* Once the new block has been received, the requester will add them
diff --git a/doc/guides/maintaining-openssl.md b/doc/guides/maintaining-openssl.md
index 5be6a5f5e2..5bfe01e0f6 100644
--- a/doc/guides/maintaining-openssl.md
+++ b/doc/guides/maintaining-openssl.md
@@ -5,7 +5,7 @@ This document describes how to update `deps/openssl/`.
## Requirements
* Linux environment
* `perl` Only Perl version 5 is tested.
-* `nasm` (http://www.nasm.us/) The version of 2.11 or higher is needed.
+* `nasm` (<http://www.nasm.us/>) The version of 2.11 or higher is needed.
* GNU `as` in binutils. The version of 2.26 or higher is needed.
## 0. Check Requirements
@@ -27,7 +27,7 @@ NASM version 2.11.08
## 1. Obtain and extract new OpenSSL sources
-Get a new source from https://www.openssl.org/source/ and extract
+Get a new source from <https://www.openssl.org/source/> and extract
all files into `deps/openssl/openssl`. Then add all files and commit
them.
```sh
diff --git a/doc/guides/offboarding.md b/doc/guides/offboarding.md
index 3db892b0f3..13f602bb0f 100644
--- a/doc/guides/offboarding.md
+++ b/doc/guides/offboarding.md
@@ -13,4 +13,4 @@ Emeritus or leaves the project.
* Some teams may also require a pull request to remove the Collaborator from
a team listing. For example, if someone is removed from @nodejs/build,
they should also be removed from the Build WG README.md file in the
- https://github.com/nodejs/build repository.
+ <https://github.com/nodejs/build> repository.
diff --git a/doc/guides/releases.md b/doc/guides/releases.md
index 2068a46dc1..141a264d51 100644
--- a/doc/guides/releases.md
+++ b/doc/guides/releases.md
@@ -682,7 +682,7 @@ The nodejs.org website will automatically rebuild and include the new version.
To announce the build on Twitter through the official @nodejs account, email
[pr@nodejs.org](mailto:pr@nodejs.org) with a message such as:
-> v5.8.0 of @nodejs is out: https://nodejs.org/en/blog/release/v5.8.0/
+> v5.8.0 of @nodejs is out: <https://nodejs.org/en/blog/release/v5.8.0/>
> …
> something here about notable changes
diff --git a/doc/guides/security-release-process.md b/doc/guides/security-release-process.md
index 73d27ae7c6..acf6b56558 100644
--- a/doc/guides/security-release-process.md
+++ b/doc/guides/security-release-process.md
@@ -88,6 +88,6 @@ information described.
* [ ] Make sure the PRs for the vulnerabilities are closed.
[H1 CVE requests]: https://hackerone.com/nodejs/cve_requests
-[docker-node]: https://github.com/nodejs/docker-node/issues)
-[nodejs/build]: https://github.com/nodejs/build/issues)
+[docker-node]: https://github.com/nodejs/docker-node/issues
+[nodejs/build]: https://github.com/nodejs/build/issues
[email]: https://groups.google.com/forum/#!forum/nodejs-sec
diff --git a/doc/guides/using-symbols.md b/doc/guides/using-symbols.md
index b4bf9cd67f..2bc32862b7 100644
--- a/doc/guides/using-symbols.md
+++ b/doc/guides/using-symbols.md
@@ -9,7 +9,7 @@ Symbol-keyed properties of an object are not included in the output of
default.
Learn more about symbols at
-https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Symbol.
+<https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Symbol>.
## `Symbol(string)`
diff --git a/doc/guides/writing-and-running-benchmarks.md b/doc/guides/writing-and-running-benchmarks.md
index 0075023ce8..eca55bf4ed 100644
--- a/doc/guides/writing-and-running-benchmarks.md
+++ b/doc/guides/writing-and-running-benchmarks.md
@@ -54,7 +54,7 @@ from [nghttp2.org][] or built from source.
### Benchmark Analysis Requirements
To analyze the results, `R` should be installed. Use one of the available
-package managers or download it from https://www.r-project.org/.
+package managers or download it from <https://www.r-project.org/>.
The R packages `ggplot2` and `plyr` are also used and can be installed using
the R REPL.
@@ -68,7 +68,7 @@ install.packages("plyr")
In the event that a message is reported stating that a CRAN mirror must be
selected first, specify a mirror by adding in the repo parameter.
-If we used the "http://cran.us.r-project.org" mirror, it could look something
+If we used the "<http://cran.us.r-project.org>" mirror, it could look something
like this:
```R
diff --git a/doc/guides/writing-tests.md b/doc/guides/writing-tests.md
index 7022bf8f93..385e3813fd 100644
--- a/doc/guides/writing-tests.md
+++ b/doc/guides/writing-tests.md
@@ -430,7 +430,7 @@ To generate a test coverage report, see the
[Test Coverage section of the Building guide][].
Nightly coverage reports for the Node.js master branch are available at
-https://coverage.nodejs.org/.
+<https://coverage.nodejs.org/>.
[ASCII]: http://man7.org/linux/man-pages/man7/ascii.7.html
[Google Test]: https://github.com/google/googletest
diff --git a/glossary.md b/glossary.md
index a48fd6083b..a2954635a5 100644
--- a/glossary.md
+++ b/glossary.md
@@ -1,4 +1,4 @@
-You may also need to check https://chromium.googlesource.com/chromiumos/docs/+/master/glossary.md.
+You may also need to check <https://chromium.googlesource.com/chromiumos/docs/+/master/glossary.md>.
* LGTM: "Looks good to me", commonly used to approve a code review.
* PTAL: Please take a look.
diff --git a/onboarding.md b/onboarding.md
index 4f1346f2d0..31b8353ef4 100644
--- a/onboarding.md
+++ b/onboarding.md
@@ -165,7 +165,7 @@ onboarding session.
* It is not automatically run. You need to start it manually.
* Log in on CI is integrated with GitHub. Try to log in now!
* You will be using `node-test-pull-request` most of the time. Go there now!
- * Consider bookmarking it: https://ci.nodejs.org/job/node-test-pull-request/
+ * Consider bookmarking it: <https://ci.nodejs.org/job/node-test-pull-request/>
* To get to the form to start a job, click on `Build with Parameters`. (If you
don't see it, that probably means you are not logged in!) Click it now!
* To start CI testing from this screen, you need to fill in two elements on
@@ -200,7 +200,7 @@ needs to be pointed out separately during the onboarding.
## Exercise: Make a PR adding yourself to the README
* Example:
- https://github.com/nodejs/node/commit/ce986de829457c39257cd205067602e765768fb0
+ <https://github.com/nodejs/node/commit/ce986de829457c39257cd205067602e765768fb0>
* For raw commit message: `git log ce986de829457c39257cd205067602e765768fb0
-1`
* Collaborators are in alphabetical order by GitHub username.
diff --git a/tools/icu/README.md b/tools/icu/README.md
index 01b0178c45..e59f28b718 100644
--- a/tools/icu/README.md
+++ b/tools/icu/README.md
@@ -21,7 +21,7 @@ Note:
> The files in this directory were written for the Node.js v0.12 effort.
> The original intent was to merge the tools such as `icutrim.py` and `iculslocs.cc`
> back into ICU. ICU has gained its own “data slicer” tool.
-> There is an issue open, https://github.com/nodejs/node/issues/25136
+> There is an issue open, <https://github.com/nodejs/node/issues/25136>
> for replacing `icutrim.py` with the [ICU data slicer][].
## See Also