|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] [xsl:] From two sibling nodes to output one (transform
this is not intended to be an exercise in solipsism, just to save you the
trouble of replying where it's unnecessary - sorry!
I wrote:
- is there an efficient way I can copy all the static content elements
except my marker element, which I replace with the contents of the variable?
yes: it's on Dave Pawson's site as the first example for xsl:copy -
<xsl:template match="*">
<xsl:copy>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>
<xsl:template match="replaceMe">
<xsl:value-of select="$myVariable"/>
</xsl:template>
But there's no need to put it into a variable, I could just use another
template, no?
Tom
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
|

Cart


![[xsl:] From two sibling nodes to output one (transform](/images/get_stylus.gif)





