我正在转换这个 XML:
<?xml version='1.0' encoding='utf-8'?>
<song xmlns="http://openlyrics.info/namespace/2009/song" version="0.8" createdIn="OpenLP 2.0.1" modifiedIn="OpenLP 2.0.1" modifiedDate="2012-03-14T02:21:52">
<properties>
<titles>
<title>Amazing Grace</title>
</titles>
<authors>
<author>John Newton</author>
</authors>
</properties>
<lyrics>
<verse name="v1">
<lines>Amazing grace, how sweet the sound<br/>That saved a wretch like me<br/>I once was lost, but now am found<br/>Was blind but now I see</lines>
</verse>
使用这个 XSLT:
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:o="http://openlyrics.info/namespace/2009/song">
<xsl:output method="html" />
<xsl:template match="o:song">
<html>
<body>
<h2><xsl:value-of select="o:properties/o:titles/o:title"/><br /></h2>
<h3><xsl:for-each select="o:properties/o:authors/o:author">
<xsl:value-of select="."/><br />
</xsl:for-each></h3>
<xsl:for-each select="o:lyrics/o:verse/o:lines">
<xsl:copy-of select="." />
</xsl:for-each>
</body>
</html>
</xsl:template>
“行”的每一部分都有一个我想保留的 br/ 标签,这就是我使用 copy-of 而不是 value-of 的原因。这就是我试图从“行”中得到的:
<lines xmlns="http://openlyrics.info/namespace/2009/song">Amazing grace, how sweet the sound<br/>That saved a wretch like me
相反,XSLT 将 br/ 标记更改为
<br></br>
并产生两个换行符,而不仅仅是我想要的一个。
<lines xmlns="http://openlyrics.info/namespace/2009/song">Amazing grace, how sweet the sound<br></br>
有没有办法防止这种 br/ 转换并保留 XML 中存在的 br/ 标签,同时仍然使用副本?我在这里做错了什么?
注意:奇怪的是,当我删除“song”标签中的命名空间并将XSLT写成好像没有命名空间一样,例如
<xsl:for-each select="lyrics/verse/lines">
<xsl:copy-of select="." />
那么我没有这个问题。br/ 标签被保留。所以我觉得这与使用命名空间有关。
有任何想法吗?