keksAccountGUI/node_modulesOLD/html-tags
Kekskurse 8e5ce9e324 Update Framework 2019-08-11 20:48:02 +02:00
..
html-tags-void.json Update Framework 2019-08-11 20:48:02 +02:00
html-tags.json Update Framework 2019-08-11 20:48:02 +02:00
index.js Update Framework 2019-08-11 20:48:02 +02:00
license Update Framework 2019-08-11 20:48:02 +02:00
package.json Update Framework 2019-08-11 20:48:02 +02:00
readme.md Update Framework 2019-08-11 20:48:02 +02:00
void.js Update Framework 2019-08-11 20:48:02 +02:00

readme.md

html-tags Build Status

List of standard HTML tags

It's just a couple of JSON files that can be used in any environment.

It intentionally leaves out obsolete tags.

Install

$ npm install html-tags

Usage

const htmlTags = require('html-tags');

console.log(htmlTags);
//=> ['a', 'abbr', 'acronym', ...]

And void (self-closing) tags:

const voidHtmlTags = require('html-tags/void');

console.log(voidHtmlTags);
//=> ['area', 'base', 'br', ...]

License

MIT © Sindre Sorhus