Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Eric Vitiello http://www.leapfroginteractive.com

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

simple templating engine

this will replace variables within a string that are denoted as [[variable]] and will replace it with the value of data[variable]


   1  
   2  function parseTemplate(content, data) {
   3  	content=String(content);
   4  	re = /\[\[(\w*)\]\]/gi;
   5  
   6  	return (
   7  		content.replace(
   8  			re, 
   9  			function ($1,$2,$3) {
  10  				return data[$2];
  11  			}
  12  		)
  13  	);
  14  }
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS