Re: [xml-dev] Forming a MIME_TYPE Attribute list
"Marker, Mike" <> writes: > The following does not work: > > <!ATTLIST MIME_TYPE value (text/html | application/pdf | image/tiff) > "image/tiff"> > > due to the '/' characters. Correct. Enumerated attribute values are NMTOKENs and as such can only include name characters. "/" is not a name character. Ari.