Skip to content
New issue

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

elements-to-maps-502 #183

Open
ChristianGruen opened this issue Nov 21, 2024 · 1 comment
Open

elements-to-maps-502 #183

ChristianGruen opened this issue Nov 21, 2024 · 1 comment
Assignees

Comments

@ChristianGruen
Copy link
Contributor

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 […]”.

Shouldn’t the first empty array [] rather be an empty map {}? And shouldn’t "i": "" be "i": [""]?

@ChristianGruen
Copy link
Contributor Author

I tend to believe that the observations for this test case remain valid with the latest changes.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants