Last active
June 7, 2021 04:33
-
-
Save Cartmanishere/4702804ff32cbdcb32e8e0916feb5530 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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