mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2024-11-05 09:56:22 +00:00
Introduce a Markdown generator.
This commit is contained in:
parent
ccf6a1a1be
commit
7df7a3f894
17
src/gen/markdown-generator.js
Normal file
17
src/gen/markdown-generator.js
Normal file
@ -0,0 +1,17 @@
|
||||
/**
|
||||
Markdown resume generator for FluentCV.
|
||||
@license Copyright (c) 2015 by James M. Devlin. All rights reserved.
|
||||
*/
|
||||
|
||||
var TemplateGenerator = require('./template-generator');
|
||||
|
||||
/**
|
||||
MarkdownGenerator generates a Markdown-formatted resume via TemplateGenerator.
|
||||
*/
|
||||
var MarkdownGenerator = module.exports = TemplateGenerator.extend({
|
||||
|
||||
init: function(){
|
||||
this._super( 'md' );
|
||||
}
|
||||
|
||||
});
|
Loading…
Reference in New Issue
Block a user