rehype-minify-meta-content

rehype plugin to minify `content` on `meta` elements

Usage no npm install needed!

<script type="module">
  import rehypeMinifyMetaContent from 'https://cdn.skypack.dev/rehype-minify-meta-content';
</script>

README

rehype-minify-meta-content

Build Coverage Downloads Size Sponsors Backers Chat

Minify content on meta elements.

Note: meta[name=theme-color] and meta[name=msapplication-TileColor] are handled by rehype-minify-meta-color.

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-meta-content

This package exports no identifiers. The default export is rehypeMinifyMetaContent

Use

On the API:

 import {unified} from 'unified'
 import rehypeParse from 'rehype-parse'
+import rehypeMinifyMetaContent from 'rehype-minify-meta-content'
 import rehypeStringify from 'rehype-stringify'

 unified()
   .use(rehypeParse)
+  .use(rehypeMinifyMetaContent)
   .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-meta-content --output output.html

Example

In
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=yes">
<meta name="keywords" content="foo, bar baz, qux">
Out
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="keywords" content="foo,bar baz,qux">

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