You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This request and its solution are presented here, in discourse.
Using an ordered dictionary (preferably Dictionary) would maintain the order of attributes.
The use case:
Suppose I have an XML tag:
The x, y, and z attributes are ordered; this helps when editing point data.
julia> using XML
julia> xyz = XML.Element("point", x=1, y=2, z=3)
Node Element <point x="1" z="3" y="2">
xyz does not remain x, y, z ordered
The text was updated successfully, but these errors were encountered:
This request and its solution are presented here, in discourse.
Using an ordered dictionary (preferably Dictionary) would maintain the order of attributes.
The use case:
xyz
does not remainx, y, z
orderedThe text was updated successfully, but these errors were encountered: