doc,wasi: use code markup/markdown in headers

PR-URL: https://github.com/nodejs/node/pull/31086
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
This commit is contained in:
Rich Trott 2019-12-24 16:07:25 -08:00
parent 257a5dd46d
commit b46efa96cd

View File

@ -32,7 +32,7 @@ const importObject = { wasi_snapshot_preview1: wasi.wasiImport };
The `--experimental-wasi-unstable-preview1` and `--experimental-wasm-bigint`
CLI arguments are needed for the previous example to run.
## Class: WASI
## Class: `WASI`
<!-- YAML
added: v13.3.0
-->
@ -43,7 +43,7 @@ represents a distinct sandbox environment. For security purposes, each `WASI`
instance must have its command line arguments, environment variables, and
sandbox directory structure configured explicitly.
### new WASI(\[options\])
### `new WASI([options])`
<!-- YAML
added: v13.3.0
-->
@ -59,7 +59,7 @@ added: v13.3.0
directories within the sandbox. The corresponding values in `preopens` are
the real paths to those directories on the host machine.
### wasi.start(instance)
### `wasi.start(instance)`
<!-- YAML
added: v13.3.0
-->
@ -74,7 +74,7 @@ is present on `instance`, then `start()` does nothing.
`start()` requires that `instance` exports a [`WebAssembly.Memory`][] named
`memory`. If `instance` does not have a `memory` export an exception is thrown.
### wasi.wasiImport
### `wasi.wasiImport`
<!-- YAML
added: v13.3.0
-->