This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Fw: Bug in SAXON (entity/character set ) ??


David Carlisle wrote:
> >   <!ENTITY bullet  "&#38;#8226;">
> why the double escaping here?
> It cold more easily have been written
>   <!ENTITY bullet  "&#8226;">

It looks like he's trying to see if it's possible to force a character
reference into the output by putting the 7 characters & # 8 2 2 6 ; into
the stylesheet. Of course, the &, as character data, will always be
serialized as &amp; or &#38;, so it's not going to work. :) He should just
put the 1 bullet character into the stylesheet by specifying it as
&#8226; and not worry about how it gets serialized.

   - Mike
____________________________________________________________________
Mike J. Brown, software engineer at         My XML/XSL resources:
webb.net in Denver, Colorado, USA           http://www.skew.org/xml/


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]