Package Exports
- html-all-known-attributes
Readme
html-all-known-attributes
All HTML attributes known to the Humanity
Install
This package is ESM only: Node 12+ is needed to use it and it must be imported instead of required:
npm i html-all-known-attributesIf you need a legacy version which works with require, use version 4.1.0
Quick Take
import { strict as assert } from "assert";
import { allHtmlAttribs } from "html-all-known-attributes";
assert.equal(allHtmlAttribs.has("href"), true);
assert.equal(allHtmlAttribs.size, 702);
// iterating:
const gathered = [];
for (const x of allHtmlAttribs) {
// push first three
if (gathered.length < 3) {
gathered.push(x);
}
}
assert.deepEqual(gathered, ["abbr", "accept", "accept-charset"]);Documentation
Please visit codsen.com for a full description of the API and examples.
Contributing
To report bugs or request features or assistance, raise an issue on GitHub.
Licence
MIT License
Copyright (c) 2010-2021 Roy Revelt and other contributors
![]()