如何使用Diazo保留HTML实体?

时间:2012-10-22 07:10:41

标签: xslt html-entities diazo

我有以下简单的Diazo规则文件:

<rules
  xmlns="http://namespaces.plone.org/diazo"
  xmlns:css="http://namespaces.plone.org/diazo/css"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

  <theme href="theme/theme.html" />

  <replace css:theme-children="#content" css:content-children=".content" />

</rules>

和主题:

<html>
  <body>
    <div id="content">
        Lorem ipsum ...
    </div>
  </body>
</html>

我想要转换的来源是:

<html>
  <body>
    <div class="content">
        <a href="&#0109;&#0097;&#0105;lt&#0111;&#0058;info&#0064;example&#46;org">info</a>
    </div>
  </body>
</html>

我得到的是

... <a href="mailto:info@example.org">info</a> ...

但我希望保持href属性的HTML实体不变。我怎么能用Diazo做到这一点?

1 个答案:

答案 0 :(得分:0)

注意数字字符引用不是实体引用,因此您的标题有点误导(保留或不保留实体引用的答案,例如“&amp; n b s p;”非常不同)

我不知道Diazo,但在XSLT中,如果你添加

 <xsl:output encoding="US-ASCII"/>

到您的文档,然后将使用数字引用输出任何非ascii字符。

但是在您的示例中,它们实际上是引用的ascii字符,例如“。”作为“。”在xslt 1中没有任何标准方法可以做到这一点(如果文档将由符合标准的html或xml系统处理,则永远不应该有任何理由这样做)。任何此类系统都会在处理开始之前扩展对其字符的引用。 (这就是XSLT无法保留它们的原因:在XSLT看到输入数据之前,它们已被xml解析器删除。)