Css class to style in-liner. Sometimes you just need to inline your styles. This makes it a bit easier to maintain.
Html -------- ##### This: ```html ``` #####Plus This: ```css .replace-me { color: red; background-color: green; } ``` #####Equals This: ```html ```
##Installation Not ready yet for distribution, but will be available via npm when it is.
```javascript var innie = require('@illuns/innie'); innie.compileHtml({ file: 'test/index.html', style: 'test/style.css' }).then(function(){ console.log('done'); }); ```