tim icon indicating copy to clipboard operation
tim copied to clipboard

Add more Emmet flavors

Open georgelemon opened this issue 1 year ago • 0 comments

Multiplication

With * operator we can define how many times x element should be outputted. The generator injects a $i variable containing the index value. This can be combined with an array storage. For example:

var x = ["tim", "is", "awesome"]
ul > li*3: $x[$i]

Expected output

<ul>
  <li>tim</li>
  <li>is</li>
  <li>awesome</li>
</ul>

to be edited

georgelemon avatar Apr 18 '24 12:04 georgelemon