mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2024-11-22 16:30:11 +00:00
Fix PNG generation glitch.
This commit is contained in:
parent
3acf648eb4
commit
3cf24cfb40
@ -190,11 +190,12 @@ Implementation of the 'generate' verb for HackMyResume.
|
|||||||
freebie: true, title: 'yaml', outFormat: 'yml', pre: 'yml',
|
freebie: true, title: 'yaml', outFormat: 'yml', pre: 'yml',
|
||||||
ext: 'yml', path: null, data: null
|
ext: 'yml', path: null, data: null
|
||||||
};
|
};
|
||||||
theTheme.formats.png = theTheme.formats.png ||
|
if( theTheme.formats.html && !theTheme.formats.png ) {
|
||||||
( theTheme.formats.html && {
|
theTheme.formats.png = {
|
||||||
freebie: true, title: 'png', outFormat: 'png',
|
freebie: true, title: 'png', outFormat: 'png',
|
||||||
ext: 'yml', path: null, data: null
|
ext: 'yml', path: null, data: null
|
||||||
});
|
};
|
||||||
|
}
|
||||||
|
|
||||||
// Set up the destination collection. It's either the array of files passed
|
// Set up the destination collection. It's either the array of files passed
|
||||||
// by the user or 'out/resume.all' if no targets were specified.
|
// by the user or 'out/resume.all' if no targets were specified.
|
||||||
@ -207,7 +208,7 @@ Implementation of the 'generate' verb for HackMyResume.
|
|||||||
|
|
||||||
var to = PATH.resolve(t), pa = parsePath(to),fmat = pa.extname || '.all';
|
var to = PATH.resolve(t), pa = parsePath(to),fmat = pa.extname || '.all';
|
||||||
|
|
||||||
var explicitFormats = _.omit( theTheme.formats, function(val) {
|
var explicitFormats = _.omit( theTheme.formats, function(val, key) {
|
||||||
return !val.freebie;
|
return !val.freebie;
|
||||||
});
|
});
|
||||||
var implicitFormats = _.omit( theTheme.formats, function(val) {
|
var implicitFormats = _.omit( theTheme.formats, function(val) {
|
||||||
|
Loading…
Reference in New Issue
Block a user