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
EntityNotDeclared
Given this XML file:
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE article [ <!ELEMENT article (#PCDATA)> ]> <article> </article>
should be highlighted. (It should be managed in XMLSyntaxErrorCode).
CodeAction could create the proper entity in the DOCTYPE like this:
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE article [ <!ELEMENT article (#PCDATA)> <!ENTITY nbsp "entity-value"> ]> <article> </article>
We must take care of existing of doctype. For instance if we have
<?xml version="1.0" encoding="UTF-8"?> <article> </article>
CodeAction should generate
<!DOCTYPE article [ <!ENTITY nbsp "entity-value"> ]>
The text was updated successfully, but these errors were encountered:
Error range fix has been merged. Code action will be handled in #532
Sorry, something went wrong.
xorye
No branches or pull requests
Given this XML file:
should be highlighted. (It should be managed in XMLSyntaxErrorCode).
CodeAction could create the proper entity in the DOCTYPE like this:
We must take care of existing of doctype. For instance if we have
CodeAction should generate
The text was updated successfully, but these errors were encountered: