私はこのようなXHTMLをいくつか持っています
<span style="font-size:8px;"><font size="3"><strong style="font-size:14pt;">EXAM: </strong>Head</font></span>
そして、このように見えるように、すべての font-size 属性を削除したい
<strong>EXAM: </strong>Head
私は試した
<xsl:template match="font size">
<xsl:copy>
<xsl:copy-of select="@*" />
<xsl:apply-templates select="node()" />
</xsl:copy>
</xsl:template>
しかし、それはノード全体を削除します。助言がありますか?