XSLT3可以与expand-text = yes在同一模板中使用禁用转义功能吗?

问题描述 投票:4回答:1

[我在Saxon的XSLT3中尝试使用禁用输出转义时注意到,如果在样式表上甚至在给定的匹配模板上将expand-text设置为yes,它将不起作用

以下代码(在自身上运行时)显示了此问题(在Saxon 9.8.0.12中)。我知道这是一个不寻常的组合,通常不惜一切代价避免使用disable-output-escapeing,而只是试图确定正确的行为。

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="3.0">

    <xsl:template match="/">
        <out>
            <xsl:apply-templates/>
        </out>
    </xsl:template>
    <xsl:template match="xsl:stylesheet" expand-text="true">
        <expandtext>
            <count>{count(*)}</count>
            <xsl:text disable-output-escaping="true">&lt;test/&gt;</xsl:text>
        </expandtext>
        <xsl:apply-templates/>
    </xsl:template>
    <xsl:template match="xsl:template" expand-text="false">
        <notexpandtext>
            <count>{count(*)}</count>
            <xsl:text disable-output-escaping="true">&lt;test/&gt;</xsl:text>
        </notexpandtext>
    </xsl:template>
</xsl:stylesheet>

产生

<?xml version="1.0" encoding="UTF-8"?>
<out>
    <expandtext><count>3</count>&lt;test/&gt;</expandtext>
    <notexpandtext><count>{count(*)}</count><test/></notexpandtext>
    <notexpandtext><count>{count(*)}</count><test/></notexpandtext>
    <notexpandtext><count>{count(*)}</count><test/></notexpandtext>
</out>
xslt saxon xslt-3.0
1个回答
0
投票

实际上这里有一个错误,我已经登录了

© www.soinside.com 2019 - 2024. All rights reserved.