0

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

<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 实体完整。我怎么能用重氮做到这一点?

4

1 回答 1

0

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

我不知道重氮但在 XSLT 如果你添加

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

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

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

于 2012-10-22T14:00:30.853 回答