2016-01-27 10:29:26 +00:00
|
|
|
(function() {
|
2018-02-12 05:05:29 +00:00
|
|
|
/**
|
|
|
|
Definition of the MarkdownGenerator class.
|
|
|
|
@module generators/markdown-generator
|
|
|
|
@license MIT. See LICENSE.md for details.
|
|
|
|
*/
|
|
|
|
var MarkdownGenerator, TemplateGenerator;
|
2016-01-27 10:29:26 +00:00
|
|
|
|
|
|
|
TemplateGenerator = require('./template-generator');
|
|
|
|
|
|
|
|
/**
|
|
|
|
MarkdownGenerator generates a Markdown-formatted resume via TemplateGenerator.
|
2018-02-12 05:05:29 +00:00
|
|
|
*/
|
|
|
|
module.exports = MarkdownGenerator = class MarkdownGenerator extends TemplateGenerator {
|
|
|
|
constructor() {
|
|
|
|
super('md', 'txt');
|
2016-01-27 10:29:26 +00:00
|
|
|
}
|
2016-02-02 18:38:12 +00:00
|
|
|
|
2018-02-12 05:05:29 +00:00
|
|
|
};
|
2016-01-27 10:29:26 +00:00
|
|
|
|
|
|
|
}).call(this);
|
2016-02-02 02:14:36 +00:00
|
|
|
|
|
|
|
//# sourceMappingURL=markdown-generator.js.map
|