mirror of
				https://github.com/JuanCanham/HackMyResume.git
				synced 2025-11-04 06:47:27 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			358 B
		
	
	
	
		
			CoffeeScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			358 B
		
	
	
	
		
			CoffeeScript
		
	
	
	
	
	
###*
 | 
						|
Definition of the TextGenerator class.
 | 
						|
@module generators/text-generator
 | 
						|
@license MIT. See LICENSE.md for details.
 | 
						|
###
 | 
						|
 | 
						|
TemplateGenerator = require './template-generator'
 | 
						|
 | 
						|
###*
 | 
						|
The TextGenerator generates a plain-text resume via the TemplateGenerator.
 | 
						|
###
 | 
						|
module.exports = class TextGenerator extends TemplateGenerator
 | 
						|
 | 
						|
  constructor: () -> super 'txt'
 |