Re: [xsl] pre-processing of child elements

Subject: Re: [xsl] pre-processing of child elements
From: Torsten Schassan <a2345447@xxxxxxxxxxxxxxxxxx>
Date: Thu, 7 Jul 2005 17:37:41 +0200
Dear David,

this solution almost works out:

> <xsl:template match="element/text()">
>   <i><xsl:apply-templates/></i>
> </xsl:template>

Here it must be:

<xsl:template match="element/text()">
  <i><xsl:value-of select="."/></i>
</xsl:template>

Otherwise nothing will be written in the output.

Thanks, Torsten


-----
Wexelblat's Scheduling Algorithm:
Choose two:   Good / Fast / Cheap
-----
Torsten Schassan (Projekt Handschriftendatenbank/MASTER)
Herzog August Bibliothek, Postfach 1364, D-38299 Wolfenbuettel
Tel.: +49-5331-808-117, schassan at hab dot de

Current Thread