From aa58edd853d16c098dfb31463e8b81fec34d4df6 Mon Sep 17 00:00:00 2001 From: James Devlin Date: Tue, 8 Sep 2015 23:08:07 -0400 Subject: [PATCH] Restore PDF generation. --- src/scrappy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scrappy.js b/src/scrappy.js index 0cab22a..270e970 100644 --- a/src/scrappy.js +++ b/src/scrappy.js @@ -89,7 +89,7 @@ module.exports = function () { // Post-process and save the file fName === 'html' && (mk = html( mk, themeFile, fOut )); - //fName === 'pdf' && pdf( mk, fOut ); + fName === 'pdf' && pdf( mk, fOut ); fName !== 'pdf' && FS.writeFileSync( fOut, mk, 'utf8' ); return mk;