1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2024-06-01 20:00:05 +01:00

Add JSON format support.

This commit is contained in:
devlinjd 2015-10-10 20:11:26 -04:00
parent b1d987c3b4
commit d4a3a08aff

View File

@ -93,7 +93,8 @@ module.exports = function () {
{ name: 'txt', ext: 'txt', gen: new FLUENT.TextGenerator() },
{ name: 'doc', ext: 'doc', fmt: 'xml', gen: new FLUENT.WordGenerator() },
{ name: 'pdf', ext: 'pdf', fmt: 'html', is: false, gen: new FLUENT.HtmlPdfGenerator() },
{ name: 'markdown', ext: 'md', fmt: 'txt', gen: new FLUENT.MarkdownGenerator() }
{ name: 'markdown', ext: 'md', fmt: 'txt', gen: new FLUENT.MarkdownGenerator() },
{ name: 'json', ext: 'json', gen: new FLUENT.JsonGenerator() }
];
/**