我想向您寻求帮助。我对XSLT完全陌生,我想知道是否有人可以向我展示以下TEI片段的正确XSLT样式表:
<div>
<head>Weitere Aufzählungen</head>
<list rend="numbered">
<item n="1">A</item>
<item n="2">B</item>
<item n="3">C<list rend="numbered">
<item n="3.1">a</item>
<item n="3.2">b</item>
</list>
</item>
</list>
</div>
输出应类似于HTML文档中的内容:
1. A
2. B
3. C
3.1 a
3.2 b
非常感谢您对我的帮助:)
答案 0 :(得分:0)
如果要输出文本,可以使用以下带有<xsl:output method="text" />
的样式表。它通过计算项目祖先节点来区分缩进级别,并在级别0上添加一个额外的.
。
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text" indent="yes" />
<xsl:variable name="newLine" select="'
'" />
<xsl:template match="text()" />
<xsl:template match="/div/list">
<xsl:apply-templates select="item" />
</xsl:template>
<xsl:template match="item">
<xsl:for-each select="ancestor::item"><xsl:text> </xsl:text></xsl:for-each>
<xsl:value-of select="@n" />
<xsl:if test="not(ancestor::item)"><xsl:text>.</xsl:text></xsl:if>
<xsl:value-of select="concat(' ',text(),$newLine)" />
<xsl:apply-templates select="list" />
</xsl:template>
</xsl:stylesheet>
输出为:
1. A
2. B
3. C
3.1 a
3.2 b
顺便说一句,您可能需要将TEI名称空间的适当名称空间声明添加到xsl:stylesheet
元素。