Guest User

Untitled

a guest
Jul 17th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. var template = "<h1>Hello {{$name$}}</h1>"
  2. var customTags = [ '{{$', '$}}' ];
  3. Mustache.parse(template, cutomTags);
  4. var result = Mustache.render(template, { name: "John" };
  5. console.log(result);
  6.  
  7. Hello John
Add Comment
Please, Sign In to add comment