xsl-list
[Top] [All Lists]

Re: [xsl] Entities in XSL (again)

2010-02-17 04:55:38
Hi,

On 2/17/10 8:04 AM, Terry Badger wrote:
<wrapper>This is a&nbsp; sample</wrapper>

If the above is your XML then that also needs to contain a DOCTYPE declaration to define the entity.

The following stylesheet works ok for me in oXygen:

<!DOCTYPE xsl:stylesheet [ <!ENTITY nbsp "&#160;"> ]>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; version="1.0">
  <xsl:output encoding="utf-8" indent="yes" method="html"/>
  <xsl:template match="/">
    <xsl:copy-of select="."/>
  </xsl:template>
</xsl:stylesheet>

tested with the following XML

<!DOCTYPE xsl:stylesheet [ <!ENTITY nbsp "&#160;"> ]>
<wrapper>This is a &nbsp; sample</wrapper>

Best Regards,
George
--
George Cristian Bina
<oXygen/> XML Editor, Schema Editor and XSLT Editor/Debugger
http://www.oxygenxml.com

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>