rehype-minify-enumerated-attribute
!Buildbuild-badgebuild
!Coveragecoverage-badgecoverage
!Downloadsdownloads-badgedownloads
!Sizesize-badgesize
!Sponsorssponsors-badgecollective
!Backersbackers-badgecollective
!Chatchat-badgechatMinify enumerated attributes.
Sometimes attributes or their values can be dropped entirely, or a shorter value can be used.
Install
This package is ESM onlyesm: Node 12+ is needed to use it and it must beimported
ed instead of required
d.npm install rehype-minify-enumerated-attribute
This package exports no identifiers.
The default export is `rehypeMinifyEnumeratedAttribute`
## Use
On the API:
```diff
import {unified} from 'unified'
import rehypeParse from 'rehype-parse'
+import rehypeMinifyEnumeratedAttribute from 'rehype-minify-enumerated-attribute'
import rehypeStringify from 'rehype-stringify'
unified()
.use(rehypeParse)
+ .use(rehypeMinifyEnumeratedAttribute)
.use(rehypeStringify)
.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 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
Seecontributing.md
contributing in rehypejs/.github
health for ways
to get started.
See support.md
support for ways to get help.This project has a code of conductcoc. By interacting with this repository, organization, or community you agree to abide by its terms.