> I have resolved this by using <xsl:text>, which allows the
> XSLT processor to just move the copyright symbol into the
> output HTML with the ampersand:
>
> <p>Copyright <sup>
> <xsl:text disable-output-escaping="yes">&#169;</xsl:text>
> </sup> 2002 Company, Inc.</p>
>
> Is this the best approach?
>
No, it's appalling. Just use:
<p>Copyright <sup>©</sup> 2002 Company, Inc</p>
Michael Kay
Software AG
home: Michael.H.Kay@xxxxxxxxxxxx
work: Michael.Kay@xxxxxxxxxxxxxx
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|