1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2024-07-08 02:30:05 +01:00
HackMyResume/src/generators/html-generator.js

35 lines
823 B
JavaScript
Raw Normal View History

2015-10-26 16:30:00 +00:00
/**
2015-12-17 15:15:59 +00:00
Definition of the HTMLGenerator class.
@license MIT. Copyright (c) 2015 James Devlin / FluentDesk.
@module html-generator.js
2015-10-26 16:30:00 +00:00
*/
(function() {
var TemplateGenerator = require('./template-generator')
, FS = require('fs-extra')
, HTML = require( 'html' )
, PATH = require('path');
2016-01-21 10:21:49 +00:00
require('string.prototype.endswith');
var HtmlGenerator = module.exports = TemplateGenerator.extend({
init: function() {
this._super( 'html' );
},
/**
Copy satellite CSS files to the destination and optionally pretty-print
the HTML resume prior to saving.
*/
onBeforeSave: function( info ) {
2016-01-21 10:21:49 +00:00
if( info.outputFile.endsWith('.css') )
return info.mk;
return this.opts.prettify ?
HTML.prettyPrint( info.mk, this.opts.prettify ) : info.mk;
}
});
}());