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
Will come up with a Unexpected closing tag error from prettier. Wrapping just the closing </{{ element_type }}> in ignore tags fixes the problem, which means it must think the first tag is self-closing?
prettier error:
SyntaxError: Unexpected closing tag "#~9~#". It may happen when the tag has already been closed by another tag. For more info see https://www.w3.org/TR/html5/syntax.html#closing-elements-that-have-implied-end-tags (5:5) 3 | <#~3~# 4 | #~7~#> #~8~#
> 5 |</#~9~#> | ^^^^^^^^ 6 |
The text was updated successfully, but these errors were encountered:
I'm not even sure if this is a use-case that should be covered by this plugin, it's pretty niche, but we have a macro that looks something like this
Will come up with a
Unexpected closing tag
error from prettier. Wrapping just the closing</{{ element_type }}>
in ignore tags fixes the problem, which means it must think the first tag is self-closing?prettier error:
The text was updated successfully, but these errors were encountered: