html-slicer
v0.2.0
Published
html slicer
Downloads
10
Readme
html-slicer
If you have ever used Evernote web clipper, you must know how amazing it is. This small tool trys to implement parts of its functions.
Installation
This module is installed via npm:
$ npm install html-slicer
Example Usage
var htmlSlicer = require('html-slicer');
htmlSlicer({url: 'http://nodejs.org', selector: '#column1'},
function(result) {
console.log(result);
});
What this tool basically does is it clip part(which selector specified) of an webpage, and returns the result as html with inline css.