Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tools/eslint/node_modules/character-entities/readme.md')
-rw-r--r--tools/eslint/node_modules/character-entities/readme.md53
1 files changed, 53 insertions, 0 deletions
diff --git a/tools/eslint/node_modules/character-entities/readme.md b/tools/eslint/node_modules/character-entities/readme.md
new file mode 100644
index 00000000000..8f79f76b2ff
--- /dev/null
+++ b/tools/eslint/node_modules/character-entities/readme.md
@@ -0,0 +1,53 @@
+# character-entities [![Build Status][travis-badge]][travis] [![Coverage Status][codecov-badge]][codecov]
+
+<!--lint disable heading-increment list-item-spacing no-duplicate-headings-->
+
+HTML character entity information.
+
+## Installation
+
+[npm][npm-install]:
+
+```bash
+npm install character-entities
+```
+
+## Usage
+
+```js
+console.log(characterEntities.AElig); // Æ
+console.log(characterEntities.aelig); // æ
+console.log(characterEntities.amp); // &
+```
+
+## API
+
+### characterEntities
+
+Mapping between (case-sensitive) character entity names to replacements.
+
+## Support
+
+See [html.spec.whatwg.org][html].
+
+## License
+
+[MIT][license] © [Titus Wormer][author]
+
+<!-- Definitions -->
+
+[travis-badge]: https://img.shields.io/travis/wooorm/character-entities.svg
+
+[travis]: https://travis-ci.org/wooorm/character-entities
+
+[codecov-badge]: https://img.shields.io/codecov/c/github/wooorm/character-entities.svg
+
+[codecov]: https://codecov.io/github/wooorm/character-entities
+
+[npm-install]: https://docs.npmjs.com/cli/install
+
+[license]: LICENSE
+
+[author]: http://wooorm.com
+
+[html]: https://html.spec.whatwg.org/multipage/syntax.html#named-character-references