You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
div{ foo (bar) baz } should expand to <div>foo (bar) baz</div>. But currently this does not work because it's considered an invalid expression due to the following code
div{ foo (bar) baz }
should expand to<div>foo (bar) baz</div>
. But currently this does not work because it's considered an invalid expression due to the following codevscode-emmet-helper/src/emmetHelper.ts
Lines 492 to 496 in 05f8659
Restricting
(
and)
to be only next to>
,+
,*
or^
misses the case where(
or)
are inside{
and}
that is in a text node.Actual behavior:
Expected behavior (as seen on emmet's docs):
I'll be sending a PR soon!
The text was updated successfully, but these errors were encountered: