brackets-emmet
brackets-emmet copied to clipboard
Specify text for multiple siblings with list
I'm want to create this simple html with Emmet.
<td>a</td>
<td>b</td>
<td>c</td>
I would imagine it to be possible with a syntax like this.
td{a,b,c}
But this only produces the output of <td>a,b,c</td>
, which is not what I desire. Is this at possible with Emmet?
You should write a, b and c each on new line, select them and wrap with abbreviation.
Or write td*3 them tab & write content
Sent from my iPhone
On 15 Aug 2018, at 01:09, samurdhilbk [email protected] wrote:
I'm want to do a simple thing with Emmet.
I want to create this html.
<td>a</td> <td>b</td> <td>c</td>
I would imagine it to be possible with a syntax like this.
td{a,b,c}
But this only produces the output of
a,b,c , which is not what I desire. Is this at possible with Emmet?— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or mute the thread.