AxKit2

 view release on metacpan or  search on metacpan

demo/webmail/xmlmail-display.xsl  view on Meta::CPAN

    </div>
</xsl:template>

<xsl:template match="xmlmail/body">
    <div class="emailbody">
        <xsl:apply-templates/>
    </div>
</xsl:template>

<xsl:template match="htmlpart[@pre='1']">
    <!-- <div class="marker">HTML Part (decoded to text):</div> -->
    <pre>
    <xsl:apply-templates/>
    </pre>
</xsl:template>

<xsl:template match="htmlpart">
    <!-- <div class="marker">HTML Part (decoded to text):</div> -->
    <xsl:apply-templates/>
</xsl:template>

<xsl:template match="textpart">
    <!-- <div class="marker">Plain Text Part:</div> -->
    <pre>
    <xsl:apply-templates/>
    </pre>
</xsl:template>



( run in 0.690 second using v1.01-cache-2.11-cpan-26ccb49234f )