rehype-minify-enumerated-attribute

rehype plugin to minify enumerated attributes

Usage no npm install needed!

<script type="module">
  import rehypeMinifyEnumeratedAttribute from 'https://cdn.skypack.dev/rehype-minify-enumerated-attribute';
</script>

README

rehype-minify-enumerated-attribute

Build Coverage Downloads Size Sponsors Backers Chat

Minify enumerated attributes.

Sometimes attributes or their values can be dropped entirely, or a shorter value can be used.

Install

This package is ESM only: Node 12+ is needed to use it and it must be importeded instead of requiredd.

npm:

npm install rehype-minify-enumerated-attribute

This package exports no identifiers. The default export is rehypeMinifyEnumeratedAttribute

Use

On the API:

 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

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