Hi,
what would be the best approach to not generate space at the end of single tag?
Right now it generates
<item />
but I would like
<item/>
The space is added in XMLTagWriter>>writeEpilogue,
but to "cleanly" change it I would need to
* subclass tag writer
* subclass xml writer
* figure out how to provide different writer so it plays with XMLDocument>>printOn:
and that certainly doesn't feel like a nice approach.
Maybe this can be made configurable in similar fashion to indentation?
Thanks,
Peter