1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2024-07-07 18:20:05 +01:00
HackMyResume/src/generators/markdown-generator.js

19 lines
415 B
JavaScript
Raw Normal View History

2015-10-26 16:30:00 +00:00
/**
2015-12-17 15:15:59 +00:00
Definition of the MarkdownGenerator class.
@license MIT. Copyright (c) 2015 James Devlin / FluentDesk.
@module markdown-generator.js
2015-10-26 16:30:00 +00:00
*/
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' );
}
});