From 7f2625f5df2664af58237bdf70ff8f29f274198e Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Tue, 24 Dec 2019 13:42:28 -0800 Subject: [PATCH] doc,punycode: use code markup/markdown in headers Backport-PR-URL: https://github.com/nodejs/node/pull/31108 PR-URL: https://github.com/nodejs/node/pull/31086 Reviewed-By: Anna Henningsen Reviewed-By: Ruben Bridgewater --- doc/api/punycode.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/doc/api/punycode.md b/doc/api/punycode.md index b8a3b7d629f9e5..4c9dc3460a08dd 100644 --- a/doc/api/punycode.md +++ b/doc/api/punycode.md @@ -37,7 +37,7 @@ The `punycode` module is a third-party dependency used by Node.js and made available to developers as a convenience. Fixes or other modifications to the module must be directed to the [Punycode.js][] project. -## punycode.decode(string) +## `punycode.decode(string)` @@ -52,7 +52,7 @@ punycode.decode('maana-pta'); // 'mañana' punycode.decode('--dqo34k'); // '☃-⌘' ``` -## punycode.encode(string) +## `punycode.encode(string)` @@ -67,7 +67,7 @@ punycode.encode('mañana'); // 'maana-pta' punycode.encode('☃-⌘'); // '--dqo34k' ``` -## punycode.toASCII(domain) +## `punycode.toASCII(domain)` @@ -86,7 +86,7 @@ punycode.toASCII('☃-⌘.com'); // 'xn----dqo34k.com' punycode.toASCII('example.com'); // 'example.com' ``` -## punycode.toUnicode(domain) +## `punycode.toUnicode(domain)` @@ -104,12 +104,12 @@ punycode.toUnicode('xn----dqo34k.com'); // '☃-⌘.com' punycode.toUnicode('example.com'); // 'example.com' ``` -## punycode.ucs2 +## `punycode.ucs2` -### punycode.ucs2.decode(string) +### `punycode.ucs2.decode(string)` @@ -125,7 +125,7 @@ punycode.ucs2.decode('abc'); // [0x61, 0x62, 0x63] punycode.ucs2.decode('\uD834\uDF06'); // [0x1D306] ``` -### punycode.ucs2.encode(codePoints) +### `punycode.ucs2.encode(codePoints)` @@ -140,7 +140,7 @@ punycode.ucs2.encode([0x61, 0x62, 0x63]); // 'abc' punycode.ucs2.encode([0x1D306]); // '\uD834\uDF06' ``` -## punycode.version +## `punycode.version`