Mustache
Renders a mustache template
Processing
The step renders a mustache template and makes the rendered text available as a result.
Templates can exist in files or be supplied as strings.
Settings
Name | Type | Description |
---|---|---|
Template Root |
string or dict |
If given as
If given as Specifies all templates as a dict indexed by template name to template strings. Such as:
If In this case the template setting supplies a complete template string and partials are not available. Evaluated for each input row |
Template |
string |
Specifies the template to use. If Template Root is a If Template Root is a If Template Root is Evaluated for each input row |
Template Data |
any |
The data to pass to the template. Typically that is a dict such as:
Evaluated for each input row |
Decorate Lists |
boolean |
If
Evaluated for each input row |
Datetime Formatter |
function |
A function of the form If Evaluated for each input row |
Results
Name | Type | Description |
---|---|---|
rendered |
string | The result after rendering the template |