Project

Profile

Help

Bug #2310 » transform2.xsl

Transform 2 - David Sewell, 2015-02-06 03:19

 
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
exclude-result-prefixes="xs"
version="3.0">
<xsl:template match="document|paragraph">
<xsl:copy>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>
<xsl:template match="text()">
<xsl:value-of select="replace(., 'e','x')"/>
</xsl:template>
</xsl:stylesheet>
(3-3/5)