doc: use blockquotes for Stability: markers · nodejs/node@c809b88
11# Buffer
223- Stability: 2 - Stable
3+> Stability: 2 - Stable
4455Prior to the introduction of [`TypedArray`] in ECMAScript 2015 (ES6), the
66JavaScript language had no mechanism for reading or manipulating streams
@@ -300,7 +300,7 @@ It can be constructed in a variety of ways.
300300deprecated: v6.0.0
301301-->
302302303- Stability: 0 - Deprecated: Use [`Buffer.from(array)`] instead.
303+> Stability: 0 - Deprecated: Use [`Buffer.from(array)`] instead.
304304305305* `array` {Array} An array of bytes to copy from
306306@@ -318,7 +318,7 @@ const buf = new Buffer([0x62, 0x75, 0x66, 0x66, 0x65, 0x72]);
318318deprecated: v6.0.0
319319-->
320320321- Stability: 0 - Deprecated: Use [`Buffer.from(buffer)`] instead.
321+> Stability: 0 - Deprecated: Use [`Buffer.from(buffer)`] instead.
322322323323* `buffer` {Buffer} An existing `Buffer` to copy data from
324324@@ -344,9 +344,9 @@ console.log(buf2.toString());
344344deprecated: v6.0.0
345345-->
346346347- Stability: 0 - Deprecated: Use
348- [`Buffer.from(arrayBuffer[, byteOffset [, length]])`][`Buffer.from(arrayBuffer)`]
349- instead.
347+> Stability: 0 - Deprecated: Use
348+> [`Buffer.from(arrayBuffer[, byteOffset [, length]])`][`Buffer.from(arrayBuffer)`]
349+> instead.
350350351351* `arrayBuffer` {ArrayBuffer} The `.buffer` property of a [`TypedArray`] or
352352[`ArrayBuffer`]
@@ -387,8 +387,8 @@ console.log(buf);
387387deprecated: v6.0.0
388388-->
389389390- Stability: 0 - Deprecated: Use [`Buffer.alloc()`] instead (also see
391- [`Buffer.allocUnsafe()`]).
390+> Stability: 0 - Deprecated: Use [`Buffer.alloc()`] instead (also see
391+> [`Buffer.allocUnsafe()`]).
392392393393* `size` {Integer} The desired length of the new `Buffer`
394394@@ -420,8 +420,8 @@ console.log(buf);
420420deprecated: v6.0.0
421421-->
422422423- Stability: 0 - Deprecated:
424- Use [`Buffer.from(string[, encoding])`][`Buffer.from(string)`] instead.
423+> Stability: 0 - Deprecated:
424+> Use [`Buffer.from(string[, encoding])`][`Buffer.from(string)`] instead.
425425426426* `string` {String} String to encode
427427* `encoding` {String} The encoding of `string`. **Default:** `'utf8'`
@@ -2309,7 +2309,7 @@ On 64-bit architectures, this value is `(2^31)-1` (~2GB).
23092309deprecated: v6.0.0
23102310-->
231123112312- Stability: 0 - Deprecated: Use [`Buffer.allocUnsafeSlow()`] instead.
2312+> Stability: 0 - Deprecated: Use [`Buffer.allocUnsafeSlow()`] instead.
2313231323142314Returns an un-pooled `Buffer`.
23152315@@ -2349,7 +2349,7 @@ has observed undue memory retention in their applications.
23492349deprecated: v6.0.0
23502350-->
235123512352- Stability: 0 - Deprecated: Use [`Buffer.allocUnsafeSlow()`] instead.
2352+> Stability: 0 - Deprecated: Use [`Buffer.allocUnsafeSlow()`] instead.
2353235323542354* `size` {Integer} The desired length of the new `SlowBuffer`
23552355