rehype-minify-enumerated-attribute
Minify enumerated attributes.
Sometimes attributes or their values can be dropped entirely, or a shorter
value can be used.
Install
npm:
npm install rehype-minify-enumerated-attribute
Use
On the API:
unified()
.use(require('rehype-parse'))
+ .use(require('rehype-minify-enumerated-attribute'))
.use(require('rehype-stringify'))
.process('<span>some html</span>', function (err, file) {
console.error(report(err || file))
console.log(String(file))
})
On the CLI:
rehype input.html --use minify-enumerated-attribute > output.html
Example
In
<meta charset="utf-8">
<video preload="auto">
<track kind="subtitles" src="abc.xyz">
</video>
Out
<meta charset="utf8">
<video preload="">
<track src="abc.xyz">
</video>
Contribute
See contributing.md
in rehypejs/.github
for ways
to get started.
See support.md
for ways to get help.
This project has a code of conduct.
By interacting with this repository, organization, or community you agree to
abide by its terms.
License
MIT © Titus Wormer