Skip to content

Commit

Permalink
doc: update vm.md for link linting
Browse files Browse the repository at this point in the history
Update vm.md for link linting rules that are about to be applied. Define
an undefined link reference. Escape non-link text that uses `[` and `]`.

PR-URL: #29982
Reviewed-By: Ruben Bridgewater <[email protected]>
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Richard Lau <[email protected]>
Reviewed-By: Luigi Pinca <[email protected]>
  • Loading branch information
Trott committed Oct 15, 2019
1 parent f4f856b commit c4de76f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions doc/api/vm.md
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ flag enabled.*
The `vm.SourceTextModule` class provides the [Source Text Module Record][] as
defined in the ECMAScript specification.

### Constructor: new vm.SourceTextModule(code[, options])
### Constructor: new vm.SourceTextModule(code\[, options\])

* `code` {string} JavaScript Module code to parse
* `options`
Expand Down Expand Up @@ -653,7 +653,7 @@ const module = new vm.SyntheticModule(['default'], function() {
// Use `module` in linking...
```
### Constructor: new vm.SyntheticModule(exportNames, evaluateCallback[, options])
### Constructor: new vm.SyntheticModule(exportNames, evaluateCallback\[, options\])
<!-- YAML
added: REPLACEME
-->
Expand Down Expand Up @@ -1168,6 +1168,7 @@ queues.
[GetModuleNamespace]: https://tc39.es/ecma262/#sec-getmodulenamespace
[HostResolveImportedModule]: https://tc39.es/ecma262/#sec-hostresolveimportedmodule
[Link() concrete method]: https://tc39.es/ecma262/#sec-moduledeclarationlinking
[Module Record]: https://www.ecma-international.org/ecma-262/#sec-abstract-module-records
[Source Text Module Record]: https://tc39.es/ecma262/#sec-source-text-module-records
[Synthetic Module Record]: https://heycam.github.io/webidl/#synthetic-module-records
[V8 Embedder's Guide]: https://v8.dev/docs/embed#contexts
Expand Down

0 comments on commit c4de76f

Please sign in to comment.