Skip to content

Instantly share code, notes, and snippets.

@Cartmanishere
Last active June 7, 2021 04:33
Show Gist options
  • Select an option

  • Save Cartmanishere/4702804ff32cbdcb32e8e0916feb5530 to your computer and use it in GitHub Desktop.

Select an option

Save Cartmanishere/4702804ff32cbdcb32e8e0916feb5530 to your computer and use it in GitHub Desktop.
TemplateLoader loader = new FileTemplateLoader("/home/templates/");
Handlebars handlebars = new Handlebars(loader);
Template template = handlebars.compile("mytemplate");
Map<String, String> data = new HashMap<>();
data.put("name", "John");
System.out.println(template.apply(data));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment