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
diff options
context:
space:
mode:
authorAntoine du Hamel <duhamelantoine1995@gmail.com>2020-09-14 18:09:13 +0300
committerRich Trott <rtrott@gmail.com>2020-10-01 16:19:12 +0300
commitecf5060a42a5cd073ed4200e80afae1a79178bba (patch)
tree75f774ee55e85607f285c58ac535a5c3bf709dd7 /doc/api/addons.md
parent726143e683738b0e60580bdc247e6cfa60a0783a (diff)
doc: use .md extension for internal links
This helps catch broken links as part of the test suite. This also improves the user experience when browsing the markdown files. PR-URL: https://github.com/nodejs/node/pull/35191 Fixes: https://github.com/nodejs/node/issues/35189 Reviewed-By: Derek Lewis <DerekNonGeneric@inf.is> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
Diffstat (limited to 'doc/api/addons.md')
-rw-r--r--doc/api/addons.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/api/addons.md b/doc/api/addons.md
index bfe527cac99..aa71f8726f2 100644
--- a/doc/api/addons.md
+++ b/doc/api/addons.md
@@ -10,7 +10,7 @@ Addons provide an interface between JavaScript and C/C++ libraries.
There are three options for implementing addons: N-API, nan, or direct
use of internal V8, libuv and Node.js libraries. Unless there is a need for
direct access to functionality which is not exposed by N-API, use N-API.
-Refer to [C/C++ addons with N-API](n-api.html) for more information on N-API.
+Refer to [C/C++ addons with N-API](n-api.md) for more information on N-API.
When not using N-API, implementing addons is complicated,
involving knowledge of several components and APIs:
@@ -452,7 +452,7 @@ in the N-API are used.
Creating and maintaining an addon that benefits from the ABI stability
provided by N-API carries with it certain
-[implementation considerations](n-api.html#n_api_implications_of_abi_stability).
+[implementation considerations](n-api.md#n_api_implications_of_abi_stability).
To use N-API in the above "Hello world" example, replace the content of
`hello.cc` with the following. All other instructions remain the same.
@@ -490,7 +490,7 @@ NAPI_MODULE(NODE_GYP_MODULE_NAME, init)
```
The functions available and how to use them are documented in
-[C/C++ addons with N-API](n-api.html).
+[C/C++ addons with N-API](n-api.md).
## Addon examples
@@ -1356,7 +1356,7 @@ console.log(result);
// Prints: 30
```
-[`Worker`]: worker_threads.html#worker_threads_class_worker
+[`Worker`]: worker_threads.md#worker_threads_class_worker
[Electron]: https://electronjs.org/
[Embedder's Guide]: https://github.com/v8/v8/wiki/Embedder's%20Guide
[Linking to libraries included with Node.js]: #addons_linking_to_libraries_included_with_node_js
@@ -1367,5 +1367,5 @@ console.log(result);
[installation instructions]: https://github.com/nodejs/node-gyp#installation
[libuv]: https://github.com/libuv/libuv
[node-gyp]: https://github.com/nodejs/node-gyp
-[require]: modules.html#modules_require_id
+[require]: modules.md#modules_require_id
[v8-docs]: https://v8docs.nodesource.com/