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
Took me a while to figure this error out: Error: Invalid character in name which comes from the XmlBuilder.
Error: Invalid character in name
Turns out this came from the fact that I accidentally did something like this:
builder.buildObject({ $: { foo: 'bar' }, ... }
And the $ is assumed to be the attrKey but gives the above error when used on the root node.
$
I thought there was something wrong with the attrKey setting or some other bug.
So maybe a quick check can be added with a better error message so others don't fall into this.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Took me a while to figure this error out:
Error: Invalid character in name
which comes from the XmlBuilder.Turns out this came from the fact that I accidentally did something like this:
And the
$
is assumed to be the attrKey but gives the above error when used on the root node.I thought there was something wrong with the attrKey setting or some other bug.
So maybe a quick check can be added with a better error message so others don't fall into this.
The text was updated successfully, but these errors were encountered: