emmetio / brackets-emmet

Emmet plugin for Brackets editor
http://emmet.io
MIT License
489 stars 188 forks source link

Specify text for multiple siblings with list #131

Open samurdhilbk opened 6 years ago

samurdhilbk commented 6 years ago

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?

sergeche commented 6 years ago

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 notifications@github.com 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.