Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Valid Element Types and attributes

Status
Not open for further replies.

goddersb

Programmer
Mar 26, 2009
14
GB
Does anyone what are illegal chars that should not be used in the names of element types and their attributes?
 
ref
3.1 Start-Tags, End-Tags, and Empty-Element Tags

[40] STag ::= '<' Name (S Attribute)* S? '>'

2.3 Common Syntactic Constructs

[4] NameStartChar ::= ":" | [A-Z] | "_" | [a-z] | [#xC0-#xD6] | [#xD8-#xF6] | [#xF8-#x2FF] | [#x370-#x37D] | [#x37F-#x1FFF] | [#x200C-#x200D] | [#x2070-#x218F] | [#x2C00-#x2FEF] | [#x3001-#xD7FF] | [#xF900-#xFDCF] | [#xFDF0-#xFFFD] | [#x10000-#xEFFFF]

[4a] NameChar ::= NameStartChar | "-" | "." | [0-9] | #xB7 | [#x0300-#x036F] | [#x203F-#x2040]

[5] Name ::= NameStartChar (NameChar)*
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top