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
XSI type attributes contain namespaced information; normalize the attribute values accordingly.
<foo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://foo" xsi:type="bar" />
With the following namespace configuration:
parser.ns({ 'http://foo': 'FOO' });
... the parser should normalize attrs to { 'xsi:type': 'FOO:bar', ... }.
attrs
{ 'xsi:type': 'FOO:bar', ... }
The text was updated successfully, but these errors were encountered:
196e0cb
feat(parser): normalize xsi:type without ns declarations
ab3ee63
Related to #4
No branches or pull requests
XSI type attributes contain namespaced information; normalize the attribute values accordingly.
With the following namespace configuration:
... the parser should normalize
attrs
to{ 'xsi:type': 'FOO:bar', ... }
.The text was updated successfully, but these errors were encountered: