假设我有一个这样的源示例文档:
<html>
<b><i><u>TestBIU</u></i></b>
<i><b><u>TestIBU</u></b></i>
<i><u><b>TestIUB</b></u></i>
<b><u><i>TestBUI</i></u></b>
<u><i><b>TestUIB</b></i></u>
<u><b><i>TestUBI</i></b></u>
<u>TestU</u>
<i>TestI</i>
<b>TestB</b>
<u><b>TestUB</b></u>
</html>
我需要一个 XSLT 模板来产生这个:
<html>
<b><i>TestBIU</i></b>
<i><b>TestIBU</b></i>
<i><b>TestIUB</b></i>
<b><i>TestBUI</i></b>
<i><b>TestUIB</b></i>
<b><i>TestUBI</i></b>
<u>TestU</u>
<i>TestI</i>
<b>TestB</b>
<b>TestUB</b>
</html>
因此,当它与斜体和/或粗体标签结合出现时,它应该删除下划线标签。当只加下划线时,它应该保留。任何想法如何解决这个特定问题?
这是我的尝试,但如果 TestUIB 和 TestUBI 失败:
<xsl:template match="/">
<html>
<xsl:apply-templates />
</html>
</xsl:template>
<xsl:template match="b/u">
<xsl:apply-templates />
</xsl:template>
<xsl:template match="i/u">
<xsl:apply-templates />
</xsl:template>
<xsl:template match="u/i">
<i><xsl:apply-templates /></i>
</xsl:template>
<xsl:template match="u/b">
<b><xsl:apply-templates /></b>
</xsl:template>
<xsl:template match="b | u | i">
<xsl:copy>
<xsl:apply-templates select="* | text()"/>
</xsl:copy>
</xsl:template>