mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2025-04-19 14:20:25 +01:00
19 lines
415 B
JavaScript
19 lines
415 B
JavaScript
/**
|
|
Definition of the MarkdownGenerator class.
|
|
@license MIT. Copyright (c) 2015 James Devlin / FluentDesk.
|
|
@module markdown-generator.js
|
|
*/
|
|
|
|
var TemplateGenerator = require('./template-generator');
|
|
|
|
/**
|
|
MarkdownGenerator generates a Markdown-formatted resume via TemplateGenerator.
|
|
*/
|
|
var MarkdownGenerator = module.exports = TemplateGenerator.extend({
|
|
|
|
init: function(){
|
|
this._super( 'md', 'txt' );
|
|
}
|
|
|
|
});
|