Say you have the zen snippet:
div#container>(div.panel>h2{this is the header inside panel $})*3
it will evaluate to:
<div id="container">
<div class="panel">
<h2>this is the header inside panel 1</h2>
</div>
<div class="panel">
<h2>this is the header inside panel 1</h2>
</div>
<div class="panel">
<h2>this is the header inside panel 1</h2>
</div>
</div>
Is there a way to make it evaluate passing the index of the multiplied element though to its children?
Thanks.