'Name' = "XML"; 'Version' = "1.0"; 'Author' = "W3C Recommendation 10-February-1998"; 'About' = "eXtenable Markup Language"; 'Entry' = "XMLDoc"; XMLDoc ::= "" Object; Objects ::= Object Objects | Object; Object ::= StartTag Content EndTag | UnaryTag; StartTag ::= "<" Name Attributes ">"; EndTag ::= ""; UnaryTag ::= "<" Name Attributes "/>"; Content ::= Objects | Text | NULL; Attributes ::= Attribute Attributes | NULL; Attribute ::= Name "=" AttributeValue; Text ::= Text Word | Word; Word ::= Name | Symbol | "=" | CharName | CharNumber; {SymbolChars} = {Printable} - {Letter} - ["<>'\"="] - {Whitespace}; {AttributeChars} = {Printable} - ["\""]; //Comment Start = "" AttributeValue = "\"" {AttributeChars}* "\""; Name = {Letter}{Alphanumeric}*; Symbol = {SymbolChars}; CharName = "&" {Letter}+ ";"; CharNumber = "&#" {Digit}+ ";";