我有这种具有类似 url 开头的XML<platform>
和<source>
:
<informations>
<platform>http://networkcultures.org/</plateforme>
<source>http://networkcultures.org/wpmu/theoryondemand/2011/07/11/distant-reading/</source>
</informations>
我想知道XSL如何在HTML中输出此输出,以便在开始时组合/连接两个标记并在其余部分之后<source>
:
<span class="url">
<span class="platform"><xsl:value-of select="platform"/></span>
<xsl:value-of select="the rest of <source>"/>
</span>
我已经搜索<xsl:key>
或generate-id()
但没有成功。希望你能理解我的问题。并感谢您的帮助!