XML with arbitrary number of arbitrarily named elements:
<modules>
<elt1><version>1.2.3</version></elt1>
<eltN><version>4.5.6</version></eltN>
</modules>
How to parse this into a map[string]string for elementname to version? All Unmarshall examples that I found, assume static element names.