DTD error: XHTML modularization

Lines 37 and 39 of www.w3.org/TR/xhtml-modularization/DTD/xhtml-special.ent,
which match the specicification section F.1.2
(www.w3.org/TR/xhtml-modularization/dtd_module_defs.html#a_module_XHTML_Spec
ial_Characters), read,

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

<!ENTITY amp     "&#38;&#38;" ><!-- ampersand, U+0026 ISOnum -->

These ought to be

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

<!ENTITY amp     "&#38;#38;" ><!-- ampersand, U+0026 ISOnum -->

See http://www.w3.org/TR/REC-xml#sec-predefined-ent.

Received on Friday, 5 September 2003 08:00:46 UTC