Problem in: http://www.w3.org/TR/xhtml-modularization/DTD/xhtml-s pecial.ent

When trying to validate a DTD that include this package the validation
compains of an error for "&&".  It looks like the following two definitions
are not correct:

<!ENTITY lt      "&#38;&#60;" ><!-- less-than sign, U+003C ISOnum -->
<!ENTITY amp     "&#38;&#38;" ><!-- ampersand, U+0026 ISOnum -->

making a local copy of this file and changing these declarations to the
following corrects the validation errors:

<!ENTITY lt      "&#38;#60;" ><!-- less-than sign, U+003C ISOnum -->
<!ENTITY amp     "&#38;#38;" ><!-- ampersand, U+0026 ISOnum -->

Received on Thursday, 17 May 2001 16:02:39 UTC