如何使用XSLT将HTML定义列表(DL)转换为双列XSL-FO表,其中第一列中的术语和第二列中的定义,可能有多个定义?
(道歉,如果这已经在某处得到解答。我搜索但没有找到。)
答案 0 :(得分:1)
这个问题的关键在于找到以下兄弟姐妹仍然将当前的DT作为他们的术语: XSLT: Select following-sibling until reaching a specified tag
然后,只需将整个表定义为顶级DL模板:
<xsl:template match="dl">
<fo:table>
<fo:table-body>
<xsl:for-each select="dt">
<xsl:variable name="current-term" select="."/>
<fo:table-row>
<fo:table-cell font-weight="bold" width="5.5cm">
<fo:block>
<xsl:apply-templates />
</fo:block>
</fo:table-cell>
<fo:table-cell>
<fo:block>
<xsl:apply-templates select="following-sibling::dd[preceding-sibling::dt[1] = $current-term]" />
</fo:block>
</fo:table-cell>
</fo:table-row>
</xsl:for-each>
</fo:table-body>
</fo:table>
</xsl:template>
<xsl:template match="dd">
<fo:block>
<xsl:apply-templates />
</fo:block>
</xsl:template>