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
The test case elements-to-maps-502 is (slightly reformatted):
let $input := <a><b></b><b><i/><i/><i/></b><b><i/></b></a> let $options := { 'uniform': true(), 'layouts': { QName('', 'b'): 'list-plus' } } return elements-to-maps($input, $options)
The expected result is:
{ "a": [ [], { "i": [ "", "", "" ] }, [ { "i": "" } ] ] }
The rule for list-plus says: “[…] the content is represented by a map containing […]”.
list-plus
Shouldn’t the first empty array [] rather be an empty map {}? And shouldn’t "i": "" be "i": [""]?
[]
{}
"i": ""
"i": [""]
The text was updated successfully, but these errors were encountered:
I tend to believe that the observations for this test case remain valid with the latest changes.
Sorry, something went wrong.
michaelhkay
No branches or pull requests
The test case elements-to-maps-502 is (slightly reformatted):
The expected result is:
The rule for
list-plus
says: “[…] the content is represented by a map containing […]”.Shouldn’t the first empty array
[]
rather be an empty map{}
? And shouldn’t"i": ""
be"i": [""]
?The text was updated successfully, but these errors were encountered: