Has anyone written a util to convert from ini files to xml? i.e.,
[section_a]
key1=value1
key1=value2
would be converted to:
<section name="section_a">
<entry key="key1" value="value1" />
<entry key="key2" value="value2" />
</section>
Would such a thing be useful?
- Noam.