Re: How to generate <!DOCTYPE with ENTITYs> from XSLT

xsl has no standard way to generate an internal subset of a DTD but
there is no reason why you would need this in an FO file. XSLT also has
no standard way of generating an nbsp entity reference either (except
disable-output-escaping, which is deprecated and non-portable).You fon't
need an entity reference as you can just let the XSLT engine output the
non breaking space character as the character itself or as a numeric
character reference.

Just use & # 1 6 0 ; in the stylesheet and a non breaking space will be
inserted into the generated FO file.

David

Received on Tuesday, 21 March 2006 22:28:52 UTC