使用xsl:include或xsl:import时,xsltproc缩进不起作用

时间:2012-06-20 10:32:45

标签: xslt

我有两个模板 - List.xsl和Main.xsl。 Main.xsl包含在List.xsl中,带有xsl:include。当使用xsltproc转换List.xsl时,它生成的所有代码都没有任何缩进,但是如果相同的代码放在Main.xsl而不是<xsl:apply-templates />的body标记之间,则缩进有效。在这两种情况下,缩进也适用于Saxon。是xsltproc的错误吗?

List.xsl

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:xs="http://www.w3.org/2001/XMLSchema"
  xmlns:xdt="http://www.w3.org/2005/04/xpath-datatypes"
  xmlns="http://www.w3.org/1999/xhtml">
  <xsl:include href="Main.xsl" />

  ...

</xsl:stylesheet>

Main.xsl

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns="http://www.w3.org/1999/xhtml">
  <xsl:output
    omit-xml-declaration="yes"
    doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
    doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
    method="xml"
    encoding="utf-8"
    indent="yes"
    cdata-section-elements="script style" />
  <xsl:strip-space elements="*" />

  <xsl:template match="/">
    <html>
      <head>
        <title> List </title>
        <meta http-equiv="content-type" content="text/html; charset=utf-8" />
      </head>
      <body>
        <xsl:apply-templates />
      </body>
    </html>
  </xsl:template>
</xsl:stylesheet>

第一种情况下的输出示例:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <title> List </title>
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  </head>
  <body><dl class="list"><dt>Term</dt><dd><ul><li> ... </li></ul></dd></dl></body>
</html>

第二种情况下的输出示例:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <title> List </title>
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  </head>
  <body>
    <dl class="list">
      <dt>Term</dt>
      <dd>
        <ul>
          <li> ... </li>
        </ul>
      </dd>
    </dl>
  </body>
</html>

1 个答案:

答案 0 :(得分:1)

如果List.xsl具有xsl:output元素,则其值优先于导入的样式表中指定的值。对于未在List.xsl中指定的输出属性,应应用导入的Main.xsl中指定的值。如果List.xsl没有带xsl:output的任何indent="yes"元素,那么是的,这似乎是libxslt中的错误。