我有以下流程的XML
<p>
<contribution>
<authors><author>
<surname>Zhengxing</surname> <given-name>Chen</given-name>
</author> </authors>
</contribution>
</p>
但我需要以下格式。主要问题是姓氏和名字之间的空格。但转换文件后,空间就没了。
<p>
<span class="contribution">
<span class="authors"><span class="author">
<span class="surname">Zhengxing</span> <span class="given-name">Chen</span>
</span> </span>
</span>
</p>
谢谢你的预付款。
试试这个:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="p">
<xsl:element name="p"><xsl:apply-templates/></xsl:element>
</xsl:template>
<xsl:template match="contribution|authors|author|surname|given-name">
<xsl:element name="span">
<xsl:attribute name="class"><xsl:value-of select="name()"/></xsl:attribute>
<xsl:apply-templates/>
</xsl:element>
</xsl:template>
</xsl:stylesheet>