public class EmbeddedHelper extends Object implements Helper<String>
<html>
...
{{emdedded "user" ["id"]}}
</html>
where user.hbs is:
<tr>
<td>{{firstName}}</td>
<td>{{lastName}}</td>
</tr>
expected output is:
<script id="user-hbs" type="text/x-handlebars-template">
<tr>
<td>{{firstName}}</td>
<td>{{lastName}}</td>
</tr>
</script>
Optionally, a user can set the template's name:
{{emdedded "user" "user-tmpl" }}
expected output is:
<script id="user-tmpl" type="text/x-handlebars-template">
<tr>
<td>{{firstName}}</td>
<td>{{lastName}}</td>
</tr>
</script>
public static final String NAME
public Object apply(String path, Options options) throws IOException
Helperapply in interface Helper<String>path - The context object.options - The options object.IOException - If a template cannot be loaded.Copyright © 2018. All rights reserved.