We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When multiple child elements are missing their end tags, the error range refers to the parent element's start tag, rather than the child element's.
This error does not happen when only one child is missing their end tag.
Example XML file:
<?xml version="1.0" encoding="utf-8"?> <picture> <p1></p1> <p2> <!-- missing end tag --> <p3> <!-- missing end tag --> </picture>
Result:
Error message: The element type "p3" must be terminated by the matching end-tag "</p3>".
The element type "p3" must be terminated by the matching end-tag "</p3>".
The text was updated successfully, but these errors were encountered:
Fix error range for ETagRequired (#395)
c228469
Fixes #387 Signed-off-by: David Kwon <dakwon@redhat.com>
Fix error range for ETagRequired
d64c771
xorye
Successfully merging a pull request may close this issue.
When multiple child elements are missing their end tags, the error range refers to the parent element's start tag, rather than the child element's.
This error does not happen when only one child is missing their end tag.
Example XML file:
Result:
Error message:
The element type "p3" must be terminated by the matching end-tag "</p3>".
The text was updated successfully, but these errors were encountered: