mattn / emmet-vim

emmet for vim: http://emmet.io/
http://mattn.github.io/emmet-vim
MIT License
6.41k stars 411 forks source link

lorem creating span tag inside p tag #429

Closed fhpraw closed 6 years ago

fhpraw commented 6 years ago

when I typed this

p*4>lorem3

then the output produced this, with span tag

<p>
  <span>Elit magnam qui</span>
</p>
<p>
  <span>Consectetur laboriosam tempora.</span>
</p>
<p>
  <span>Adipisicing iure veniam!</span>
</p>
<p>
  <span>Amet sunt facere!</span>
</p>

but the output supposed to be this (without span)

<p>Elit magnam qui</p>
<p>Consectetur laboriosam tempora.</p>
<p>Adipisicing iure veniam!</p>
<p>Amet sunt facere!</p>

I think this is a bug, hopefully, will be fixed soon.