emmet-vim
emmet-vim copied to clipboard
Multiple curly braces in content
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>
I'm having the same problem.
Attempted:
pre{{{data | json}}}
Expected:
<pre>{{date | json }}</pre>
Recieved:
<pre></pre> {data | json }}
This is difficult to handle brackets if the Test is string literal like "}"
.