I noticed that when reading an xml file then writing it back out, tiny xml adds closing tags to elements.
Before:
<Data blah="1" />
After:
<Data blah="1"> </Data>
Is there a way to avoid this behavior so that the output file more closely resembles the input?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I noticed that when reading an xml file then writing it back out, tiny xml adds closing tags to elements.
Before:
<Data blah="1" />
After:
<Data blah="1"> </Data>
Is there a way to avoid this behavior so that the output file more closely resembles the input?
Sorry I had that backwards, closing tags are removed and replaced with />. Is there any way to maintain the tags?