mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2024-11-05 09:56:22 +00:00
24 lines
560 B
JavaScript
24 lines
560 B
JavaScript
(function() {
|
|
/**
|
|
Definition of the MarkdownGenerator class.
|
|
@module generators/markdown-generator
|
|
@license MIT. See LICENSE.md for details.
|
|
*/
|
|
var MarkdownGenerator, TemplateGenerator;
|
|
|
|
TemplateGenerator = require('./template-generator');
|
|
|
|
/**
|
|
MarkdownGenerator generates a Markdown-formatted resume via TemplateGenerator.
|
|
*/
|
|
module.exports = MarkdownGenerator = class MarkdownGenerator extends TemplateGenerator {
|
|
constructor() {
|
|
super('md', 'txt');
|
|
}
|
|
|
|
};
|
|
|
|
}).call(this);
|
|
|
|
//# sourceMappingURL=markdown-generator.js.map
|