RE: Retrieving attributes from an internal entity

Richard Tobin (richard@cogsci.ed.ac.uk)
Tue, 3 Nov 1998 14:14:49 GMT


> <!ENTITY pct "<unit name='Percent' symbol='%'/>">

This is indeed being (correctly) interpreted as a malformed parameter
entity. Use a character entity to refer to the percent character:

<!ENTITY pct "<unit name='Percent' symbol='&#37;'/>">

-- Richard