hacking1.xsl 1.0 KB
Newer Older
1
<?xml version="1.0"?>
2 3 4
<xsl:stylesheet version="1.0"
                xmlns:html="http://www.w3.org/1999/xhtml"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25

<xsl:output method="xml" encoding="UTF-8" indent="no"/>



<xsl:template match="/">
  <xsl:apply-templates/>
</xsl:template>



<xsl:template match="@*|node()">
  <xsl:copy>
    <xsl:apply-templates select="@*|node()"/>
  </xsl:copy>
</xsl:template>



<!-- resolve b/i/code tags in a first pass, because they interfere with line
     wrapping in the second pass -->
26 27 28
<xsl:template match="html:b">*<xsl:apply-templates/>*</xsl:template>
<xsl:template match="html:i">'<xsl:apply-templates/>'</xsl:template>
<xsl:template match="html:code">"<xsl:apply-templates/>"</xsl:template>
29

E
Eric Blake 已提交
30 31 32 33 34 35 36 37 38 39
<!-- likewise, reformat a tags in first pass -->
<xsl:template match="html:a">
<xsl:text> </xsl:text><xsl:apply-templates/>
<xsl:if test="@href">
  <xsl:text> &lt;</xsl:text><xsl:value-of select="@href"/>
  <xsl:text>&gt;</xsl:text>
</xsl:if>
</xsl:template>


40
</xsl:stylesheet>