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-reference-invalid
  2. [![Build][build-badge]][build]
  3. [![Downloads][downloads-badge]][downloads]
  4. [![Size][size-badge]][size]
  5. HTML invalid numeric character reference information.
  6. ## Install
  7. [npm][]:
  8. ```sh
  9. npm install character-reference-invalid
  10. ```
  11. ## Use
  12. ```js
  13. var characterReferenceInvalid = require('character-reference-invalid')
  14. console.log(characterReferenceInvalid[0x80]) // => '€'
  15. console.log(characterReferenceInvalid[0x89]) // => '‰'
  16. console.log(characterReferenceInvalid[0x99]) // => '™'
  17. ```
  18. ## API
  19. ### `characterReferenceInvalid`
  20. Mapping between invalid numeric character reference to replacements.
  21. ## Support
  22. See [`html.spec.whatwg.org`][html].
  23. ## Related
  24. * [`character-entities`](https://github.com/wooorm/character-entities)
  25. — HTML character entity info
  26. * [`character-entities-html4`](https://github.com/wooorm/character-entities-html4)
  27. — HTML 4 character entity info
  28. * [`character-entities-legacy`](https://github.com/wooorm/character-entities-legacy)
  29. — Legacy 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-reference-invalid.svg
  38. [build]: https://travis-ci.org/wooorm/character-reference-invalid
  39. [downloads-badge]: https://img.shields.io/npm/dm/character-reference-invalid.svg
  40. [downloads]: https://www.npmjs.com/package/character-reference-invalid
  41. [size-badge]: https://img.shields.io/bundlephobia/minzip/character-reference-invalid.svg
  42. [size]: https://bundlephobia.com/result?p=character-reference-invalid
  43. [npm]: https://docs.npmjs.com/cli/install
  44. [license]: license
  45. [author]: https://wooorm.com
  46. [html]: https://html.spec.whatwg.org/multipage/syntax.html#table-charref-overrides