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