Is there a standard naming convention for XML elements? [closed]

I suspect the most common values would be camelCased – i.e.

<myTag someAttribute="someValue"/>

In particular, the spaces cause a few glitches if mixed with code-generators (i.e. to [de]serialize xml to objects), since not many languages allow enums with spaces (demanding a mapping between the two).

Leave a Comment