RenderTemplate extension
Given a String
with mustache templates, and a Map of String key /
value pairs, substitute all instances of {{key}}
for value
.
Hello {{name}}!
and
{'name': 'Bob'}
becomes:
Hello Bob!
- on
Given a String
with mustache templates, and a Map of String key /
value pairs, substitute all instances of {{key}}
for value
.
Hello {{name}}!
and
{'name': 'Bob'}
becomes:
Hello Bob!