Restore PDF generation.

This commit is contained in:
James Devlin 2015-09-08 23:08:07 -04:00
parent c9ec8a81a0
commit aa58edd853
1 changed files with 1 additions and 1 deletions

View File

@ -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;