text-template
Creates text using a Mustache template (https://mustache.github.io/).
Arguments
Inputs:
template
: The Mustache template text that contains any number of Mustache variable tags. Variable tags are indicated by the double mustaches that surround them, e.g. {{person}}
is a tag.
variables
: A map of variable names (map keys) with values (map values).
Output:
output
: The rendered text.
Example
More information about Mustache on Github:
Last updated