Great, thanks for the feedback - so I've given it a proper Nimble structure, and started writing some tests. My god the bugs.
One thing I've been wondering about is how to structure attributes vs contents. Take a feed element like this: > <generator > uri="[https://github.com/dom96/jester](https://github.com/dom96/jester)" > >Jester</generator> The natural way to get at "Jester" in Nim code would simply be feed.generator - but there's an 'href' attribute too. I would like to avoid nesting the main content of elements in (say) feed.generator.text - which would make common accessors too verbose and unintuitive for my liking. Is there any way in Nim I could have feed.generator give me "Jester" but feed.generator.href give me "[https://github.com/dom96/jester"](https://github.com/dom96/jester")?
