1.0.0 • Published 8 years ago

html-element-list v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

html-element-list

List and description of HTML tags

A JSON file to be consumed wherever, optionally interfaced via index.js for bundling within Browserify, etc.

Installation

$ npm install html-element-list --save

Usage

const elementList = require('html-element-list');
const blink = require('html-element-list').blink;

console.log(elementList.strong); // The HTML Strong Element (strong) gives text strong importance, and is typically displayed in bold.
console.log(blink); // The HTML Blink Element (blink) is a non-standard element causing the enclosed text to flash slowly.

Content

The list of tag definitions was retrieved with minor redaction from the HTML element reference. For updates, please see the contributing to MDN page.

License

HTML element reference by Mozilla Contributors is licensed under CC-BY-SA 4.0 with modification.

The original unmodified material is available from HTML element reference.