Demo: inspect XML feeds and config trees
XML becomes easier to review when elements, attributes, and nested text are shown as a tree. This helps with RSS feeds, SVG snippets, SOAP payloads, and vendor configuration files.
- Check attributes separately from child elements.
- Look for repeated elements that should become arrays in downstream code.
- Use the preview before writing XPath selectors.
<rss><channel><title>Updates</title><item><title>Release 1.2</title><link>https://example.com/release</link></item></channel></rss>