You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					12 lines
				
				370 B
			
		
		
			
		
	
	
					12 lines
				
				370 B
			| 
								 
											3 years ago
										 
									 | 
							
								var underscore = require('./underscore.js');
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								// By default, Underscore uses ERB-style template delimiters. Change the
							 | 
						||
| 
								 | 
							
								// following template settings to use alternative delimiters.
							 | 
						||
| 
								 | 
							
								var templateSettings = underscore.templateSettings = {
							 | 
						||
| 
								 | 
							
								  evaluate: /<%([\s\S]+?)%>/g,
							 | 
						||
| 
								 | 
							
								  interpolate: /<%=([\s\S]+?)%>/g,
							 | 
						||
| 
								 | 
							
								  escape: /<%-([\s\S]+?)%>/g
							 | 
						||
| 
								 | 
							
								};
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								module.exports = templateSettings;
							 |