[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: Encoding problem
>Well, I can at least supply some of the reasons why the Unicode character is >showing -- as I got caught by this myself. The reason is your line ending between >the <xsl:attribute> and </xsl:attribute> tags. >To fix this (in the cases where the attribute value template doesn't work -- the curly braces), >just make sure you don't add any extra white space. For example: ><xsl:attritbue name="value"><xsl:value-of select="@name"/></xsl:attribute> Whitespace nodes in the stylesheet are ignored, so this is equivalent to: <xsl:attribute name="value"> <xsl:value-of select="@name"/> </xsl:attribute> It is certainly best to avoid text nodes that include whitespace as well as significant text, e.g. avoid <xsl:attribute name="value"> [<xsl:value-of select="@name"/>] </xsl:attribute> write instead: <xsl:attribute name="value">[<xsl:value-of select="@name"/>]</xsl:attribute> or: <xsl:attribute name="value"> <xsl:text/>[<xsl:value-of select="@name"/>]<xsl:text/> </xsl:attribute> Mike Kay XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|