rehype-concat-css-style
Concatenate CSS <style>
elements together.
This plugin can be dangerous if CSS is invalid. Additionally, this plugin does not handle scoped
styles. Those are deprecated anyway.
Install
npm:
npm install rehype-concat-css-style
Use
On the API:
unified()
.use(require('rehype-parse'))
+ .use(require('rehype-concat-css-style'))
.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 concat-css-style > output.html
Example
In
<style>b{color:red}</style>
<style>i{color:blue}</style>
Out
<style>b{color:red}i{color:blue}</style>
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.