summaryrefslogtreecommitdiff
path: root/doc/api/http.md
diff options
context:
space:
mode:
authorAnna Henningsen <anna@addaleax.net>2016-07-16 00:35:38 +0200
committerAnna Henningsen <anna@addaleax.net>2016-08-04 22:43:34 +0200
commitc809b8834541bf63b1a43d5a12833d98ffba834f (patch)
treee5a3a79bdbecd5da9ebd4815166c45acce753b2b /doc/api/http.md
parent561958e56562f0eaf67fd05e099048d262ee7d14 (diff)
downloadnode-new-c809b8834541bf63b1a43d5a12833d98ffba834f.tar.gz
doc: use blockquotes for Stability: markers
Use blockquotes instead of code blocks for stability markers in the docs. Doing that: - Makes the makers appear correctly when viewed e.g. on github. - Allows remark-lint rules like `no-undefined-references` to work properly (https://github.com/nodejs/node/pull/7729). PR-URL: https://github.com/nodejs/node/pull/7757 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com> Reviewed-By: Michaël Zasso <mic.besace@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io>
Diffstat (limited to 'doc/api/http.md')
-rw-r--r--doc/api/http.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/http.md b/doc/api/http.md
index 606f79f395..8bd8da5570 100644
--- a/doc/api/http.md
+++ b/doc/api/http.md
@@ -1,6 +1,6 @@
# HTTP
- Stability: 2 - Stable
+> Stability: 2 - Stable
To use the HTTP server and client one must `require('http')`.
@@ -1331,7 +1331,7 @@ added: v0.1.13
deprecated: v0.3.6
-->
- Stability: 0 - Deprecated: Use [`http.request()`][] instead.
+> Stability: 0 - Deprecated: Use [`http.request()`][] instead.
Constructs a new HTTP client. `port` and `host` refer to the server to be
connected to.