Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

readme.md 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. # character-entities
  2. [![Build][build-badge]][build]
  3. [![Downloads][downloads-badge]][downloads]
  4. [![Size][size-badge]][size]
  5. HTML character entity information.
  6. ## Install
  7. [npm][]:
  8. ```sh
  9. npm install character-entities
  10. ```
  11. ## Use
  12. ```js
  13. var characterEntities = require('character-entities')
  14. console.log(characterEntities.AElig) // => 'Æ'
  15. console.log(characterEntities.aelig) // => 'æ'
  16. console.log(characterEntities.amp) // => '&'
  17. ```
  18. ## API
  19. ### characterEntities
  20. Mapping between (case-sensitive) character entity names to replacements.
  21. ## Support
  22. See [`html.spec.whatwg.org`][html].
  23. ## Related
  24. * [`character-entities-html4`](https://github.com/wooorm/character-entities-html4)
  25. — HTML 4 character entity info
  26. * [`character-entities-legacy`](https://github.com/wooorm/character-entities-legacy)
  27. — Legacy character entity info
  28. * [`parse-entities`](https://github.com/wooorm/parse-entities)
  29. — Parse HTML character references
  30. * [`stringify-entities`](https://github.com/wooorm/stringify-entities)
  31. — Stringify HTML character references
  32. ## License
  33. [MIT][license] © [Titus Wormer][author]
  34. <!-- Definitions -->
  35. [build-badge]: https://img.shields.io/travis/wooorm/character-entities.svg
  36. [build]: https://travis-ci.org/wooorm/character-entities
  37. [downloads-badge]: https://img.shields.io/npm/dm/character-entities.svg
  38. [downloads]: https://www.npmjs.com/package/character-entities
  39. [size-badge]: https://img.shields.io/bundlephobia/minzip/character-entities.svg
  40. [size]: https://bundlephobia.com/result?p=character-entities
  41. [npm]: https://docs.npmjs.com/cli/install
  42. [license]: license
  43. [author]: https://wooorm.com
  44. [html]: https://html.spec.whatwg.org/multipage/syntax.html#named-character-references