使用 XSLT 2.0 从 XSL 转换输出最小化标签

发布于 2024-11-19 15:09:16 字数 433 浏览 6 评论 0原文

我正在使用最小化 br 标签转换 XML 文档,如下所示:

<br/>

我正在使用 Saxon 9,并输出为 XHTML

<xsl:output method="xhtml" indent="yes" use-character-maps="html-chars"/>

我从文档中得到的印象是,在使用 XSLT 时,序列化程序必须使用最小化标签结尾(如果标签正文为空,确实如此),但是我总是在输出中得到这个:

<br></br>

关于为什么会出现这种情况的任何线索,以及如何强制它以最小化形式输出:

<br/>

I'm transforming an XML document with mimimized br tags like this:

<br/>

I'm using Saxon 9, and outputting as XHTML

<xsl:output method="xhtml" indent="yes" use-character-maps="html-chars"/>

I was under the impression from the docs that when using XSLT the serializer must use minimised tag endings (if the tag body is empty, which it is), however I always get this in my output:

<br></br>

Any clues as to why this should be the case, and how I can force it to output in minimized form:

<br/>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

橘虞初梦 2024-11-26 15:09:16

输出方法 xhtml 将以最小化方式输出任何空的 XHTML 元素,这意味着 XHTML 命名空间 http://www.w3 中的任何像 br 的元素.org/1999/xhtml。因此,如果没有看到更多详细信息,我会猜测您的 br 结果元素不在命名空间或不同的命名空间中。在这种情况下,输出方法不需要任何最小化语法。

The output method xhtml will output any empty XHTML elements in the minimized way, meaning any elements like br that are in the XHTML namespace http://www.w3.org/1999/xhtml. So without seeing more details I would guess that you have br result elements that are in no namespace or a different namespace. In that case the output method does not require any minimized syntax.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文