Mustache Non-Empty Lists

Hi!

Here Defold development for the HTML5 platform we have link to mustache manual

How to use Non-Empty Lists in defold?

for example

.project
[repo]
name#0 = name1
name#1 = name2
web template
{{#repo}}
  <b>{{name}}</b>
{{/repo}}

Expected behavior:

  <b>name1</b>
  <b>name2</b>

how works now:

  <b>name1, name2</b>