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]
Other format: [Raw text]

RE: XSL Generator in XSL.


> The problem I have is printing special characters.
> like if I want to print
> <xsl:value-of select="concat($Something, SomethingElse, ' print ')" />

> How can I do this?
>
Are you trying to output the whole <xsl:value-of> element to the result
tree? In that case, use

<xsl:namespace-alias stylesheet-prefix="outxsl" result-prefix="xsl"/>

...

   <outxsl:value-of select="concat($Something, SomethingElse, ' print ')" />

Alternatively, use <xsl:element> and <xsl:attribute> to build the result
tree, avoiding literal result elements. Or put all the "fixed" parts of the
stylesheet you want to generate in the source document supplied as input to
the stylesheet-generating stylesheet, rather than in the stylesheet itself,
and use <xsl:copy-of> to copy them over.

Mike Kay


 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]