1.1.2 • Published 7 years ago

htmlto v1.1.2

Weekly downloads
24
License
ISC
Repository
-
Last release
7 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

7 years ago

1.1.1

7 years ago

1.1.0

7 years ago

1.0.9

7 years ago

1.0.8

7 years ago

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago