1.1.2 • Published 8 years ago

htmlto v1.1.2

Weekly downloads
24
License
ISC
Repository
-
Last release
8 years ago
	
	var htmlTo = require('htmlto');

	var options = {
		pathTohtml:'./public/html/index.html',
		pathTopdf:'./public/pdf/index.pdf',
	}

	htmlTo.pdf(options)

Example pdf generator

	var htmlTo = require('htmlto');

	var options = {
		pathTohtml:'./public/html/index.html',
		pathTopdf:'./public/pdf/index.pdf',
		paperSize:{
			format: 'A4',
			orientation: 'portrait',
			margin: '1.5cm'
		}
	}

	htmlTo.pdf(options,function(err,result){
		if(err) throw err;
		console.log('result :',result)
	})

Example keyword density

	var htmlTo = require('htmlto');
	
	var options = {
		pathTohtml:'./public/html/keyword_index.html',
	}

	/*
		or pass url as

		var options = {
			url:'http://example.org'
		}

	*/

	htmlTo.keywordDensity(options,function(err,result){
		if(err) throw err;
		console.log('result :',result)
	})
1.1.2

8 years ago

1.1.1

8 years ago

1.1.0

8 years ago

1.0.9

8 years ago

1.0.8

8 years ago

1.0.7

8 years ago

1.0.6

8 years ago

1.0.5

8 years ago

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago