[Home] [By Thread] [By Date] [Recent Entries]
Jeremy C. Reed wrote:
<xsl:template match="text()"> <xsl:value-of select="translate(., '

', ' ')" /> </xsl:template>
A lazy way to avoid the template being triggered by text in <pre> elemets would be <xsl:template match="text()[ancestor::p][not(ancestor::pre)]"> This relies on the usual content model (no p nested in pre) J.Pietschmann
|

Cart



