Subject: Re: Parsing errors on unknown entities (unicode characters)
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 25 Nov 1999 19:25:44 GMT
|
Me> The xsl below will extract an XML compatible entity file (or files)
Sigh, never make an unplanned public release in response to a comment on
an email list:-)
If you generate isonum.ent with the stylesheet I posted these two
entities are explicitly not as required in the xml spec
<!ENTITY lt "<" ><--U003C =less-than sign R: -->
<!ENTITY amp "&" ><--U0026 =ampersand -->
They should be:
<!ENTITY lt "&#60;" ><--U003C =less-than sign R: -->
<!ENTITY amp "&#38;" ><--U0026 =ampersand -->
and _all_ the rest want ; adding after the digits.
I'll fix the stylesheet before generating the MathML 2 entity files...
David
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|