This repository has been archived on 2020-11-02. You can view files and clone it, but cannot push or open issues or pull requests.
TripSit_Suite/node_modules/html-tags
cranberry ed23347e56 Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
..
html-tags-void.json Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
html-tags-void.json.d.ts Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
html-tags.json Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
html-tags.json.d.ts Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
index.d.ts Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
index.js Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
license Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
package.json Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
readme.md Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
void.d.ts Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
void.js Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00

readme.md

html-tags Build Status

List of standard HTML tags

Its 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