StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics https://doi.org/10.1109/TVCG.2020.3030352
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.
 
 
 
 
StackGenVis/frontend/node_modules/html-tags
Angelos Chatzimparmpas f521a3509d paper-version 5 years ago
..
html-tags-void.json paper-version 5 years ago
html-tags.json paper-version 5 years ago
index.js paper-version 5 years ago
license paper-version 5 years ago
package.json paper-version 5 years ago
readme.md paper-version 5 years ago
void.js paper-version 5 years ago

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