Skip to content

Instantly share code, notes, and snippets.

@eduardolundgren
Created March 5, 2013 19:31
Show Gist options
  • Save eduardolundgren/5093421 to your computer and use it in GitHub Desktop.
Save eduardolundgren/5093421 to your computer and use it in GitHub Desktop.
var template = '<div>{content}</div>';
function getContent(json) {
return handlebars(template, json);
}
// Exemplo
getContent({
content: 'oii'
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment