gpt4 book ai didi

xslt - 注释中的输出元素

转载 作者:行者123 更新时间:2023-12-02 11:45:02 24 4
gpt4 key购买 nike

我需要在评论中显示 HTML 元素(例如)

<!-- <img src="path" width="100px" height="100px"/> -->

我使用这种方法

<?xml version="1.0" encoding="windows-1251"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" indent="no" encoding="windows-1251"/>

<xsl:template match="myNode">
...
<xsl:comment><xsl:apply-templates select="image" /></xsl:comment>
...
</xsl:template>

<xsl:template match="image">
<img src="{@src}" width="{@width}px" height="{@height}px" />
</xsl:template>

</xsl:stylesheet>

结果:

<!---->

这是元素 xsl:comment 中的代码被忽略。

如何在评论中显示项目?

最佳答案

或许可以替换

<xsl:comment><xsl:apply-templates select="image" /></xsl:comment>

<xsl:text disable-output-escaping="yes">&lt;!--</xsl:text>
<xsl:apply-templates select="image" />
<xsl:text disable-output-escaping="yes">--&gt;</xsl:text>

还没试过。

关于xslt - 注释中的输出元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3932152/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com