Get content from link tags in an HTML document.
npm install href-content
> Get content from link tags in an HTML document.
Install with npm
```
npm install --save href-content
`js
var getHrefContent = require('href-content');
getHrefContent('path/to/css', 'file://path/to/html', function (err, css) {
console.log(css);
});
``
The code for this module was originally taken from the Juice library.
MIT