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.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. # character-entities-legacy
  2. [![Build][build-badge]][build]
  3. [![Downloads][downloads-badge]][downloads]
  4. [![Size][size-badge]][size]
  5. HTML legacy character entity information: for legacy reasons some character
  6. entities are not required to have a trailing semicolon: `&copy` is perfectly
  7. okay for `©`.
  8. ## Install
  9. [npm][]:
  10. ```sh
  11. npm install character-entities-legacy
  12. ```
  13. ## Use
  14. ```js
  15. var characterEntitiesLegacy = require('character-entities-legacy')
  16. console.log(characterEntitiesLegacy.copy) // => '©'
  17. console.log(characterEntitiesLegacy.frac34) // => '¾'
  18. console.log(characterEntitiesLegacy.sup1) // => '¹'
  19. ```
  20. ## API
  21. ### `characterEntitiesLegacy`
  22. Mapping between (case-sensitive) legacy character entity names to replacements.
  23. ## Support
  24. See [`whatwg/html`][html].
  25. ## Related
  26. * [`character-entities`](https://github.com/wooorm/character-entities)
  27. — HTML character entity info
  28. * [`character-entities-html4`](https://github.com/wooorm/character-entities-html4)
  29. — HTML 4 character entity info
  30. * [`parse-entities`](https://github.com/wooorm/parse-entities)
  31. — Parse HTML character references
  32. * [`stringify-entities`](https://github.com/wooorm/stringify-entities)
  33. — Serialize HTML character references
  34. ## License
  35. [MIT][license] © [Titus Wormer][author]
  36. <!-- Definitions -->
  37. [build-badge]: https://img.shields.io/travis/wooorm/character-entities-legacy.svg
  38. [build]: https://travis-ci.org/wooorm/character-entities-legacy
  39. [downloads-badge]: https://img.shields.io/npm/dm/character-entities-legacy.svg
  40. [downloads]: https://www.npmjs.com/package/character-entities-legacy
  41. [size-badge]: https://img.shields.io/bundlephobia/minzip/character-entities-legacy.svg
  42. [size]: https://bundlephobia.com/result?p=character-entities-legacy
  43. [npm]: https://docs.npmjs.com/cli/install
  44. [license]: license
  45. [author]: https://wooorm.com
  46. [html]: https://raw.githubusercontent.com/whatwg/html/master/json-entities-legacy.inc