rDrama/node_modules/html-tags
Aevann1 67a1595b9b fdsfd 2021-12-13 22:28:32 +00:00
..
html-tags-void.json fdsfd 2021-12-13 22:28:32 +00:00
html-tags-void.json.d.ts fdsfd 2021-12-13 22:28:32 +00:00
html-tags.json fdsfd 2021-12-13 22:28:32 +00:00
html-tags.json.d.ts fdsfd 2021-12-13 22:28:32 +00:00
index.d.ts fdsfd 2021-12-13 22:28:32 +00:00
index.js fdsfd 2021-12-13 22:28:32 +00:00
license fdsfd 2021-12-13 22:28:32 +00:00
package.json fdsfd 2021-12-13 22:28:32 +00:00
readme.md fdsfd 2021-12-13 22:28:32 +00:00
void.d.ts fdsfd 2021-12-13 22:28:32 +00:00
void.js fdsfd 2021-12-13 22:28:32 +00: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