<xsl:stylesheet exclude-result-prefixes="xs" version="2.0" xpath-default-namespace="http://www.daisy.org/z3986/2005/dtbook/"> <xsl:output indent="yes"/> <xsl:template match="@*|node()"> <xsl:copy> <xsl:apply-templates select="@*|node()"/> </xsl:copy> </xsl:template> <xsl:template match="@src"> <xsl:attribute name="src"> <xsl:value-of select="translate(., '\', '/')"/> </xsl:attribute> </xsl:template> </xsl:stylesheet>