emmet-vim icon indicating copy to clipboard operation
emmet-vim copied to clipboard

Multiple curly braces in content

Open urosi opened this issue 7 years ago • 2 comments

If I write something like:

div{{{Test}}}

it expands to:

<div></div>
{Test}}

I would expect the same behaviour as on emmet.io:

<div>{{Test}}</div>

urosi avatar Apr 05 '17 04:04 urosi

I'm having the same problem.

Attempted: pre{{{data | json}}}

Expected: <pre>{{date | json }}</pre>

Recieved: <pre></pre> {data | json }}

davidbruce avatar May 07 '17 14:05 davidbruce

This is difficult to handle brackets if the Test is string literal like "}".

mattn avatar May 08 '17 02:05 mattn