mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2024-11-05 18:06:23 +00:00
15 lines
340 B
CoffeeScript
15 lines
340 B
CoffeeScript
|
###*
|
||
|
Definition of the TextGenerator class.
|
||
|
@license MIT. See LICENSE.md for details.
|
||
|
@module text-generator.js
|
||
|
###
|
||
|
|
||
|
TemplateGenerator = require './template-generator'
|
||
|
|
||
|
###*
|
||
|
The TextGenerator generates a plain-text resume via the TemplateGenerator.
|
||
|
###
|
||
|
TextGenerator = module.exports = TemplateGenerator.extend
|
||
|
|
||
|
init: () -> @_super 'txt'
|