PostHTML plugin for inlining CSS to style attrs
Usage
Plain CSS
var posthtml = css = 'div { color: red }'; ; // <div style="font-size: 14px; color: red">Hello!</div>
<style>
var posthtml = html = '<style>div { color: red }</style><div>Hello!</div>'; ; // <style>div { color: red }</style><div style="color: red">Hello!</div>
PostCSS
var posthtml = postcss = postcssObj = ; ; // <div style="font-size: 14px; color: white">Hello!</div>