2 <xsl:stylesheet version=
"1.0" xmlns:
xsl=
"http://www.w3.org/1999/XSL/Transform">
4 <xsl:output method=
"xml" encoding=
"UTF-8" indent=
"no"/>
8 <xsl:template match=
"/">
14 <xsl:template match=
"@*|node()">
16 <xsl:apply-templates select=
"@*|node()"/>
22 <!-- resolve b/i/code tags in a first pass, because they interfere with line
23 wrapping in the second pass -->
24 <xsl:template match=
"b">*
<xsl:apply-templates/>*
</xsl:template>
25 <xsl:template match=
"i">'
<xsl:apply-templates/>'
</xsl:template>
26 <xsl:template match=
"code">"<xsl:apply-templates/>"</xsl:template>