kaguranana-birthday-project/node_modules/html-tags
ameyoyo 9a8113aca4 initial 2021-12-12 18:49:32 -08:00
..
html-tags-void.json initial 2021-12-12 18:49:32 -08:00
html-tags-void.json.d.ts initial 2021-12-12 18:49:32 -08:00
html-tags.json initial 2021-12-12 18:49:32 -08:00
html-tags.json.d.ts initial 2021-12-12 18:49:32 -08:00
index.d.ts initial 2021-12-12 18:49:32 -08:00
index.js initial 2021-12-12 18:49:32 -08:00
license initial 2021-12-12 18:49:32 -08:00
package.json initial 2021-12-12 18:49:32 -08:00
readme.md initial 2021-12-12 18:49:32 -08:00
void.d.ts initial 2021-12-12 18:49:32 -08:00
void.js initial 2021-12-12 18:49:32 -08: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