1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2024-11-05 09:56:22 +00:00
This commit is contained in:
hacksalot 2016-01-09 22:15:50 -05:00
parent b7fffbcf73
commit 4c954b79df
2 changed files with 3 additions and 17 deletions

View File

@ -136,12 +136,9 @@ Output routines for HackMyResume.
HANDLEBARS.registerHelper( require('../helpers/console-helpers') ); HANDLEBARS.registerHelper( require('../helpers/console-helpers') );
var template = HANDLEBARS.compile(rawTpl, { strict: false, assumeObjects: false }); var template = HANDLEBARS.compile(rawTpl, { strict: false, assumeObjects: false });
var tot = 0; var tot = 0;
info.keywords.forEach(function(g) { info.keywords.forEach(function(g) { tot += g.count; });
tot += g.count;
});
info.keywords.totalKeywords = tot; info.keywords.totalKeywords = tot;
var output = template( info ); var output = template( info );
this.log( chalk.cyan(output) ); this.log( chalk.cyan(output) );
break; break;

View File

@ -33,18 +33,6 @@ Definition of the JRSGenerator class.
generate: function( json, jst, format, cssInfo, opts, theme ) { generate: function( json, jst, format, cssInfo, opts, theme ) {
// JSON Resume themes don't have a specific structure, so the safest thing
// to do is copy all files from source to dest.
// var COPY = require('copy');
// var globs = [ '*.css', '*.js', '*.png', '*.jpg', '*.gif', '*.bmp' ];
// COPY.sync( globs , outFolder, {
// cwd: theme.folder, nodir: true,
// ignore: ['node_modules/','node_modules/**']
// // rewrite: function(p1, p2) {
// // return PATH.join(p2, p1);
// // }
// });
// Disable JRS theme chatter (console.log, console.error, etc.) // Disable JRS theme chatter (console.log, console.error, etc.)
var off = ['log', 'error', 'dir'], org = off.map(function(c){ var off = ['log', 'error', 'dir'], org = off.map(function(c){
var ret = console[c]; console[c] = function(){}; return ret; var ret = console[c]; console[c] = function(){}; return ret;
@ -68,6 +56,7 @@ Definition of the JRSGenerator class.
}; };
function MDIN(txt) { // TODO: Move this function MDIN(txt) { // TODO: Move this
return MD(txt || '' ).replace(/^\s*<p>|<\/p>\s*$/gi, ''); return MD(txt || '' ).replace(/^\s*<p>|<\/p>\s*$/gi, '');
} }