-
Notifications
You must be signed in to change notification settings - Fork 11
EN.03.04.02.Handlebars.java Specification
Akinori Yamada edited this page Aug 21, 2014
·
2 revisions
In the case of Handlebars.java, locate template.yaml
at project root directory, as follows.
name | content | default value |
---|---|---|
suffix | extension of template | .hbs |
prettyPrint | remove unnecessary whitespaces | false |
stringParams | If true, missing helper parameters will be resolve to their names. | false |
infiniteLoops | If true, templates will be able to call him self directly or indirectly. Use with caution. | false |
deletePartialAfterMerge | If true, templates will be deleted once applied. | false |
startDelimiter | start delimiter of variable | {{ |
endDelimiter | end delimiter of variable | }} |
handlebars:
suffix: ".hbs"
prettyPrint: true
stringParams: false
infiniteLoops: false
deletePartialAfterMerge: false
startDelimiter: "{{"
endDelimiter: "}}"
Nothing