I have an array like this:
array = [0, 1, 2, 3, 4, 5, 6, 7]
And 2 configuration variables:
var start = 2;
var count = 3;
And I want mustache to render the array exactly as the configuration demands to. My template is like this:
{#array}
<p>{.}</p>
{/array}
I want my output to be this one:
<p>2</p>
<p>3</p>
<p>4</p>
How can I achieve that?