[
Lists Home |
Date Index |
Thread Index
]
Does anyone know if an xml well-formedness checker needs to check for invalid attribute names or not?
From what I have found so far:
A tag attribute name must begin with a letter (i.e., upper or lower case A through Z) and can only consist of letters, digits (i.e., 0 through 9) and the hyphen, period, colon and underscore characters (i.e., "-", ".", ":" and "_" respectively).
<?xml version="1.0"?>
<attribute :test="test"></attribute>
So I guess my question is whether or not a xml editor is required to even check this or not? The fact that a colon is the first character in the attribute name seems to be illegal.
Thank you very much
Do you Yahoo!?
Find out what made the Top Yahoo! Searches of 2003
|