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:
authorZeke Sikelianos <zeke@sikelianos.com>2020-04-23 21:01:52 +0300
committerRuben Bridgewater <ruben@bridgewater.de>2020-05-30 04:43:39 +0300
commitf08174c9fb155a5549dafcd972cf63e4a63bf24e (patch)
tree1aee255422bb10e0e6d1045af37314e9970a9e96 /doc/api/url.md
parent0ff3819481e0d1a810f2a3c8e19ad99f413ce704 (diff)
doc: update ```txt ```fandamental and ```raw code blocks
These are changed to either ```text or ```console. PR-URL: https://github.com/nodejs/node/pull/33028 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Diffstat (limited to 'doc/api/url.md')
-rw-r--r--doc/api/url.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/url.md b/doc/api/url.md
index 1e9649d5b60..49dcfbb418b 100644
--- a/doc/api/url.md
+++ b/doc/api/url.md
@@ -29,7 +29,7 @@ properties of a WHATWG `URL` object.
WHATWG URL's `origin` property includes `protocol` and `host`, but not
`username` or `password`.
-```txt
+```text
┌────────────────────────────────────────────────────────────────────────────────────────────────┐
│ href │
├──────────┬──┬─────────────────────┬────────────────────────┬───────────────────────────┬───────┤
@@ -1288,7 +1288,7 @@ located within the structure of the URL.
Within the Legacy API, spaces (`' '`) and the following characters will be
automatically escaped in the properties of URL objects:
-```txt
+```text
< > " ` \r \n \t { } | \ ^ '
```