mirror of
				https://github.com/JuanCanham/HackMyResume.git
				synced 2025-11-03 22:37:27 +00:00 
			
		
		
		
	Introduce a Markdown generator.
This commit is contained in:
		
							
								
								
									
										17
									
								
								src/gen/markdown-generator.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										17
									
								
								src/gen/markdown-generator.js
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,17 @@
 | 
			
		||||
/**
 | 
			
		||||
Markdown resume generator for FluentCV.
 | 
			
		||||
@license Copyright (c) 2015 by James M. Devlin. All rights reserved.
 | 
			
		||||
*/
 | 
			
		||||
 | 
			
		||||
var TemplateGenerator = require('./template-generator');
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
MarkdownGenerator generates a Markdown-formatted resume via TemplateGenerator.
 | 
			
		||||
*/
 | 
			
		||||
var MarkdownGenerator = module.exports = TemplateGenerator.extend({
 | 
			
		||||
 | 
			
		||||
  init: function(){
 | 
			
		||||
    this._super( 'md' );
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
});
 | 
			
		||||
		Reference in New Issue
	
	Block a user