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
468 B
JavaScript
25 lines
468 B
JavaScript
|
|
/**
|
|
Definition of the YAMLGenerator class.
|
|
@module yaml-generator.js
|
|
@license MIT. See LICENSE.md for details.
|
|
*/
|
|
|
|
(function() {
|
|
var TemplateGenerator, YAMLGenerator;
|
|
|
|
TemplateGenerator = require('./template-generator');
|
|
|
|
|
|
/**
|
|
YamlGenerator generates a YAML-formatted resume via TemplateGenerator.
|
|
*/
|
|
|
|
YAMLGenerator = module.exports = TemplateGenerator.extend({
|
|
init: function() {
|
|
return this._super('yml', 'yml');
|
|
}
|
|
});
|
|
|
|
}).call(this);
|