Skip to content

Commit

Permalink
doc,punycode: use code markup/markdown in headers
Browse files Browse the repository at this point in the history
Backport-PR-URL: #31108
PR-URL: #31086
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
  • Loading branch information
Trott authored and BethGriggs committed Feb 6, 2020
1 parent 84e3a86 commit 7f2625f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions doc/api/punycode.md
Expand Up @@ -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)`
<!-- YAML
added: v0.5.1
-->
Expand All @@ -52,7 +52,7 @@ punycode.decode('maana-pta'); // 'mañana'
punycode.decode('--dqo34k'); // '☃-⌘'
```

## punycode.encode(string)
## `punycode.encode(string)`
<!-- YAML
added: v0.5.1
-->
Expand All @@ -67,7 +67,7 @@ punycode.encode('mañana'); // 'maana-pta'
punycode.encode('☃-⌘'); // '--dqo34k'
```

## punycode.toASCII(domain)
## `punycode.toASCII(domain)`
<!-- YAML
added: v0.6.1
-->
Expand All @@ -86,7 +86,7 @@ punycode.toASCII('☃-⌘.com'); // 'xn----dqo34k.com'
punycode.toASCII('example.com'); // 'example.com'
```

## punycode.toUnicode(domain)
## `punycode.toUnicode(domain)`
<!-- YAML
added: v0.6.1
-->
Expand All @@ -104,12 +104,12 @@ punycode.toUnicode('xn----dqo34k.com'); // '☃-⌘.com'
punycode.toUnicode('example.com'); // 'example.com'
```

## punycode.ucs2
## `punycode.ucs2`
<!-- YAML
added: v0.7.0
-->

### punycode.ucs2.decode(string)
### `punycode.ucs2.decode(string)`
<!-- YAML
added: v0.7.0
-->
Expand All @@ -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)`
<!-- YAML
added: v0.7.0
-->
Expand All @@ -140,7 +140,7 @@ punycode.ucs2.encode([0x61, 0x62, 0x63]); // 'abc'
punycode.ucs2.encode([0x1D306]); // '\uD834\uDF06'
```

## punycode.version
## `punycode.version`
<!-- YAML
added: v0.6.1
-->
Expand Down

0 comments on commit 7f2625f

Please sign in to comment.