Page 1 of 1

FIXED: Emmet bug - grouping/multiplier

Posted: 25 May 2023 13:10
by crtrubshaw
Hi Rickard, Emmet is not correctly handling grouping and multiplier options. If I expand this snippet:

Code: Select all

table>(tr>td*2)*2
I would expect to get:

Code: Select all

<table>
	<tr>
		<td></td>
		<td></td>
	</tr>
	<tr>
		<td></td>
		<td></td>
	</tr>
</table>
Thanks for checking.

Re: Emmet bug - grouping/multiplier

Posted: 30 May 2023 17:12
by Rickard Johansson
Fixed in v15.90 beta 2. Thanks!