[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] white spaces
I am writing a DTD and I have an attribute that is a enumerated type. so it looks something like <!ATTLIST Parameter dataType (boolean | integer | String ) #IMPLIED > My problem is that the options include types with spaces on the names like "bcd unsigned". The following is NOT valid <!ATTLIST Parameter dataType (boolean | integer | String | bcd unsigned ) #IMPLIED > <!ENTITY % bcdUnsigned "bcd unsigned"> <!ATTLIST Parameter dataType (boolean | integer | String | %bcdUnsigned; ) #IMPLIED > <!ENTITY % bcdUnsigned "bcd unsigned"> <!ATTLIST Parameter dataType (boolean | integer | String | %bcdUnsigned; ) #IMPLIED > Does anybody know the correct syntax? I need to restrict the dataType to a set of values and some of them include spaces Am I at least on the right track with enumerated attribute types? Thanks
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|