rehype-minify-meta-content
Minify content
on meta
elements.
Note: meta[name=theme-color]
and meta[name=msapplication-TileColor]
are handled by rehype-minify-meta-color
.
Install
npm:
npm install rehype-minify-meta-content
Use
On the API:
unified()
.use(require('rehype-parse'))
+ .use(require('rehype-minify-meta-content'))
.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-meta-content > 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.