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
The following HTML/Marko doesn't parse because the closeTagName is parsed with whitespace and so the open and close tag names don't match.
<spanclass="dolorum atque aspernatur"
>Est molestiae sunt facilis qui rem.</span>
<spanclass="dolorum atque aspernatur"
>Est molestiae sunt facilis qui rem.</span
^^^^
The closing "span\n" tag does not match the corresponding opening "span" tag.
>
I would expect the closeTagName to be "span" and the closeTagEnd to be "\n>"... But I don't know if that makes sense. Alternatively, we consume and discard the whitespace between closeTagName and closeTagEnd. I also don't know how this change would impact upstream dependencies.
The text was updated successfully, but these errors were encountered:
The following HTML/Marko doesn't parse because the
closeTagName
is parsed with whitespace and so the open and close tag names don't match.I would expect the closeTagName to be
"span"
and the closeTagEnd to be"\n>"
... But I don't know if that makes sense. Alternatively, we consume and discard the whitespace betweencloseTagName
andcloseTagEnd
. I also don't know how this change would impact upstream dependencies.The text was updated successfully, but these errors were encountered: