I have data structured in the following way:
hello this is {{replacement_data}} and this {{replacement_data}} is {{replacement_data}}
.
I'm interested in using Mustache to substitute these placeholders with values from an array:
[val1, val2, val3
.
Can Mustache handle this task? Right now I'm dealing with a messy Java loop and hoping to streamline the process using a solution like this.