.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / character-entities-html4 / readme.md
1 # character-entities-html4
2
3 [![Build][build-badge]][build]
4 [![Downloads][downloads-badge]][downloads]
5 [![Size][size-badge]][size]
6
7 HTML4 character entity information.
8
9 ## Install
10
11 [npm][]:
12
13 ```sh
14 npm install character-entities-html4
15 ```
16
17 ## Use
18
19 ```js
20 var characterEntities = require('character-entities-html4')
21
22 console.log(characterEntities.AElig) // => 'Æ'
23 console.log(characterEntities.aelig) // => 'æ'
24 console.log(characterEntities.amp) // => '&'
25 console.log(characterEntities.apos) // => undefined
26 ```
27
28 ## API
29
30 ### `characterEntitiesHTML4`
31
32 Mapping between (case-sensitive) character entity names to replacements.
33
34 ## Support
35
36 See [`w3.org`][html].
37
38 ## Related
39
40 *   [`character-entities`](https://github.com/wooorm/character-entities)
41     — HTML character entity info
42 *   [`character-entities-legacy`](https://github.com/wooorm/character-entities-legacy)
43     — Legacy character entity info
44 *   [`parse-entities`](https://github.com/wooorm/parse-entities)
45     — Parse HTML character references
46 *   [`stringify-entities`](https://github.com/wooorm/stringify-entities)
47     — Stringify HTML character references
48
49 ## License
50
51 [MIT][license] © [Titus Wormer][author]
52
53 <!-- Definitions -->
54
55 [build-badge]: https://img.shields.io/travis/wooorm/character-entities-html4.svg
56
57 [build]: https://travis-ci.org/wooorm/character-entities-html4
58
59 [downloads-badge]: https://img.shields.io/npm/dm/character-entities-html4.svg
60
61 [downloads]: https://www.npmjs.com/package/character-entities-html4
62
63 [size-badge]: https://img.shields.io/bundlephobia/minzip/character-entities-html4.svg
64
65 [size]: https://bundlephobia.com/result?p=character-entities-html4
66
67 [npm]: https://docs.npmjs.com/cli/install
68
69 [license]: license
70
71 [author]: https://wooorm.com
72
73 [html]: https://www.w3.org/TR/html4/sgml/entities.html