PostHTML to remove attributes
npm install posthtml-remove-attributesposthtml-remove-attributes
==================
PostHTML plugin to remove attributes unconditionally or with content match
  
Installation
------------
Install the posthtml-remove-attributes:
``sh`
$ npm install posthtml-remove-attributes --save
Usage
-----
` javascript
var posthtml = require('posthtml');
var html = 'OMG';
posthtml([ require('posthtml-remove-attributes')([
'class', {name: style, value: /inline/} // The only non-array argument is also possible
])])
.process(html)
.then(function(result) {
console.log(result);
});
//
Contribution guidelines
--------------------------
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using
npm test`.