1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2025-05-03 04:47:07 +01:00

Add option to pass wkhtmltopdf options. Fix #176.

It seems that some time in the last couple years wkhtmltopdf's default
margins were changed from '10mm' to zero. As an alternative to #177,
this PR adds an option to pass in arbitrary wkhtmltopdf long arguments
and sets the default top and bottom margin to '10mm'.
This commit is contained in:
ryneeverett
2017-01-06 19:05:46 -05:00
parent 3cf850ea0e
commit 7e2a3c3e7e
5 changed files with 32 additions and 9 deletions

1
dist/verbs/build.js vendored
View File

@ -242,6 +242,7 @@ Implementation of the 'build' verb for HackMyResume.
_opts.noTips = opts.noTips;
_opts.debug = opts.debug;
_opts.sort = opts.sort;
_opts.wkhtmltopdf = opts.wkhtmltopdf;
that = this;
_opts.onTransform = function(info) {
that.stat(HMEVENT.afterTransform, info);