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 665B

1234567891011121314151617181920212223242526272829303132333435363738
  1. # html-tags [![Build Status](https://travis-ci.org/sindresorhus/html-tags.svg?branch=master)](https://travis-ci.org/sindresorhus/html-tags)
  2. > List of standard HTML tags
  3. It's just a couple of JSON files that can be used in any environment.
  4. It intentionally leaves out obsolete tags.
  5. ## Install
  6. ```
  7. $ npm install html-tags
  8. ```
  9. ## Usage
  10. ```js
  11. const htmlTags = require('html-tags');
  12. console.log(htmlTags);
  13. //=> ['a', 'abbr', 'acronym', …]
  14. ```
  15. And void (self-closing) tags:
  16. ```js
  17. const voidHtmlTags = require('html-tags/void');
  18. console.log(voidHtmlTags);
  19. //=> ['area', 'base', 'br', …]
  20. ```
  21. ## License
  22. MIT © [Sindre Sorhus](https://sindresorhus.com)