- What does this parse into?
- A JavaScript-style object tree you can copy as JSON. Elements become keys, attributes are prefixed with `@`, and text content goes into `#text`.
- Can I run XPath or XQuery?
- XPath yes (common subset). XQuery no. Paste your expression and see matching nodes returned as a list.
- How are repeating elements handled?
- When an element occurs more than once under the same parent, it becomes an array in the output. Single occurrences stay as scalar values.
- What happens with mixed content?
- Elements that contain both text and child tags keep the text in `#text` and children in their own keys. This is ambiguous in general — double-check the output against your XPath expectations.