rehype-minify-meta-content

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

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
rehype-minify-meta-content
3.0.02 years ago7 years agoMinified + gzip package size for rehype-minify-meta-content in KB

Readme

rehype-minify-meta-content
!Buildbuild-badgebuild !Coveragecoverage-badgecoverage !Downloadsdownloads-badgedownloads !Sizesize-badgesize !Sponsorssponsors-badgecollective !Backersbackers-badgecollective !Chatchat-badgechat
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 onlyesm: Node 12+ is needed to use it and it must be importeded instead of requiredd.
npm install rehype-minify-meta-content
This package exports no identifiers.
The default export is `rehypeMinifyMetaContent`

## Use

On the API:

```diff
 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.mdcontributing in rehypejs/.githubhealth for ways to get started. See support.mdsupport 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.

License

MITlicense © Titus Wormerauthor