0

如何在 Emmet 中乘以文本?例如,

div{Some Text} where Some Text repeats in div
div{Some Text*3} and div{Some Text}*3 do not work.
should output

<div>
    Some Text
    Some Text
    Some Text
</div>
4

1 回答 1

0

我成功地做到了以下几点:

div>{my Text here}*3

哪个返回:

<div>
  my Text here
  my Text here
  my Text here
</div>
于 2018-02-16T23:14:11.267 回答