I'm using JSViews and trying to pass to a template an array of strings, some of which will contain html. The template:
{^{for items}}
<li> {{>#data}} </li>
{{/for}}
My JSON looks something like this:
{
"items": ["<b>Steak</b>", "Cheese"]
}
Upon rendering it doesn't bold the word 'steak' but instead prints the <b> tag. I've tried swapping the {{>#data}} for {{:#data}} but that doesn't work either.