Benito van der Zander

Results 146 comments of Benito van der Zander

That would help a lot to work with HTML (a) might be confusing if the outermost element has a prefix. Or if the namespace is redefined, ` / a /...

In Xidel I have set a different default function namespace. The spec says an implementation can use something else than `fn` as default. Then the user can just write: declare...

It could also be done without the temporary map. For example: ``` for key $key in $map return ... for value $value in $map return ... for key $key value...

>See also this discussion at StackOverflow, where a user was struggling to use map:put or map:remove on deeper entries in a map; asked, "Is XQuery 3.1 designed for advanced JSON...

So the issue is that XSLT users want to use features of XQuery, but do not have any XQuery syntax available? Perhaps a simpler solution would be to allow using...

> Are there any XPath 3.x implementations at all that don't also support XQuery or XSLT? Not anymore? It used to be my goal. Implement XPath, and only XPath, because...

Because `"` does not need to be escaped at all? How about this test case: `file:write("output.json", "{""a"": ""foo""}" )`. Is it `{"a": "foo"}` or `{"a": "<>foo"}` ?

There is not really a point in escaping `>` and not escaping `"` or vice verse. >For characters such as > where XML defines a built-in entity but does not...

There you wrote > - file:append-text#3 does not write a BOM contrary to EXPath-file-appendText3-002 Despite an remark on it `` > While the relevant RFCs certainly make UTF-16 without a...