1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2025-05-10 07:47:07 +01:00

Introduce placeholder LaTeX generator.

This commit is contained in:
devlinjd
2015-12-06 18:29:16 -05:00
parent 228f14d06c
commit cf25621679
3 changed files with 21 additions and 2 deletions

View File

@ -0,0 +1,17 @@
/**
LaTeX resume generator for FluentCV.
@license MIT. Copyright (c) 2015 James Devlin / FluentDesk
*/
var TemplateGenerator = require('./template-generator');
/**
LaTeXGenerator generates a LaTeX resume via TemplateGenerator.
*/
var LaTeXGenerator = module.exports = TemplateGenerator.extend({
init: function(){
this._super( 'tex', 'tex' );
}
});