我目前正在使用XSLT样式表将XML文档转换为docbook文档。该文档必须包含相当多的表,其中一些表具有相当复杂的格式。在编写docbook时,我通常会通过添加类似
的描述来格式化表格单元格<?dbhtml bgcolor="#EEEEEE" ?>
这通常可行。但是,我没有找到从转换过程中打印出这部分文档的方法。
以下是其中一个模板:
<xsl:template match="//ns:chapter" priority="5">
<sect1 xml:id="sec1.xyz">
<title>Chapter tbd</title>
<para>introduction</para>
<table frame="all">
<title>Table</title>
<tgroup cols="2">
<colspec colname="c1" colnum="1" colwidth="2*"/>
<colspec colname="c2" colnum="2" colwidth="8*"/>
<tbody>
<xsl:for-each select="//ns:myElement[not(@classID=preceding::ns:myElement/@classID)]">
<xsl:variable name="outerElement" select="."/>
<row>
<entry namest="c1" nameend="c2" align="center"><?dbhtml bgcolor="#EEEEEE" ?>Class
<xsl:value-of select="current()/@classID"/>:
<xsl:value-of select="current()/@classTitle"/>
</entry>
</row>
<xsl:for-each select="//ns:myElement[@classID=$outerElement/@classID]">
<row>
<entry>
<xsl:value-of select="current()/@id"/>
</entry>
<entry>
<xsl:value-of select="current()/@title"/>
</entry>
</row>
</xsl:for-each>
</xsl:for-each>
</tbody>
</tgroup>
</table>
</sect1>
</xsl:template>
该模板运行良好,并在docbook中打印出表格。然而,这部分被忽略了。
我知道为什么会发生这种情况(显然
有没有人对我有任何建议,我该如何解决这个问题?!
由于 诺贝特
修改
作为一个最小的工作示例:尝试对包含至少一个元素的任何XML文档使用以下样式表。
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
exclude-result-prefixes="xs"
version="2.0">
<xsl:template match="*">
<?dbhtml bgcolor="#EEEEEE" ?>
</xsl:template>
</xsl:stylesheet>
答案 0 :(得分:1)
这是您可以使用XSLT创建的处理指令<xsl:processing-instruction name="dbhtml">bgcolor="#EEEEEE"</xsl:processing-instruction>
。见https://www.w3.org/TR/xslt-30/#creating-processing-instructions