parser

Написать ответ на текущее сообщение

 

 
   команды управления поиском

а я делал так

KLeN 07.11.2006 10:22

<xsl:template match="a|b|div|script|li|ul|span|title|body|html">
    <xsl:copy>
        <xsl:apply-templates select="@*" />
        <xsl:apply-templates/>
    </xsl:copy>
</xsl:template>

<xsl:template match="text()">
    <xsl:value-of select="." disable-output-escaping="yes"/>
</xsl:template>

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