2 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">
3 <xsl:output method="xml" omit-xml-declaration="no" doctype-public="-//OASIS//DTD DocBook XML V4.4//EN" doctype-system="http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" indent="no"/>
4 <xsl:template match="@*|*|comment()|processing-instruction()">
6 <xsl:apply-templates select="@*|node()"/>
9 <xsl:template match="text()">
10 <xsl:value-of select="replace(replace(., '[a-z]', 'x'), '[0-9]', 'd')"/>