Skip to content

Instantly share code, notes, and snippets.

@mshustov
Last active August 29, 2015 14:14
Show Gist options
  • Save mshustov/82ef15b95bcdccce34aa to your computer and use it in GitHub Desktop.
Save mshustov/82ef15b95bcdccce34aa to your computer and use it in GitHub Desktop.
handlebars like template
var reg = /\{\{(.+?)\}\}/gim;
var zz = 'hello {{name}} {{surname}}'.replace(reg, function(full, key){
switch(key){
case 'name':
return 'myName';
case 'surname':
return 'mySurname'
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment