mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2024-11-05 09:56:22 +00:00
0f65e4c9f3
Reintroduce HackMyCore, dropping the interim submodule, and reorganize and improve tests.
25 lines
509 B
JavaScript
25 lines
509 B
JavaScript
|
|
/**
|
|
Definition of the MarkdownGenerator class.
|
|
@license MIT. Copyright (c) 2015 James Devlin / FluentDesk.
|
|
@module markdown-generator.js
|
|
*/
|
|
|
|
(function() {
|
|
var MarkdownGenerator, TemplateGenerator;
|
|
|
|
TemplateGenerator = require('./template-generator');
|
|
|
|
|
|
/**
|
|
MarkdownGenerator generates a Markdown-formatted resume via TemplateGenerator.
|
|
*/
|
|
|
|
MarkdownGenerator = module.exports = TemplateGenerator.extend({
|
|
init: function() {
|
|
return this._super('md', 'txt');
|
|
}
|
|
});
|
|
|
|
}).call(this);
|