Is something like the following possible? Transform this
apples
bananas
pizza
burger
juice
water
To:
<tr>
    <li class="first">apples</li>
    <li>bananas</li>
</tr>
<tr>
    <li class="first">pizza</li>
    <li>burger</li>
</tr>
<tr>
    <li class="first">juice</li>
    <li>water</li>
</tr>
I tried this with emmet.io: tr>td.first*1+td*2 but it didn't work.
Thanks in advance.
 
    