<p>
标签中的任何<body>
标签都应转换为Body_Text
.<p>
具有最后一个祖先<sec>
但没有属性“ ”的标签sec-type
应转换为Flush_Text
(此处覆盖第一个Body_Text
转换)。<p>
具有最后一个祖先<sec sec-type="irrelevant-attribute-name>
(具有属性“ ”)的标签sec-type
应转换为Body_Text
.
<sec><p>asdf</p></sec>
应转化为<sec><Flush_Text>asdf</Flush_Text></sec>
.
<sec sec-type="whatevs"><p>asdf</p></sec>
应该是<sec sec-type="whatevs"><Body_Text>asdf</Body_Text></sec>
。
此外,任何进一步嵌套到具有此
sec-type
属性的祖先都应该是Body_Text
:
<sec sec-type="whatevs"><sec><p>asdf</p></sec></sec>
应该是<sec sec-type="whatevs"><sec><Body_Text>asdf</Body_Text></sec>
。
这是我的 XML:
<root>
<body>
<sec sec-type="asdf">
<title>This is an H1</title>
<sec>
<title>This is an H2</title>
<sec>
<title>This is an H3</title>
<p>This SHOULD be "Body_Text", but it's "Flush_Text"</p>
</sec> <!-- end of H3 -->
</sec> <!-- end of H2 -->
</sec> <!-- end of H1 -->
<sec>
<p>This is Flush_Text</p>
</sec>
<p>This is Body_Text</p>
</body>
</root>
...这是我的 XSL,它不能正常工作:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" indent="yes" method="xml"/>
<xsl:strip-space elements="*"/>
<!-- identity rule -->
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<!-- Body_Text -->
<xsl:template match="body//p">
<Body_Text>
<xsl:apply-templates select="@*|node()"/>
</Body_Text>
</xsl:template>
<!-- Flush_Text -->
<xsl:template match="sec//p">
<xsl:if test="not(@sec-type)">
<Flush_Text>
<xsl:apply-templates select="@*|node()"/>
</Flush_Text>
</xsl:if>
</xsl:template>
<!-- H1 -->
<xsl:template match="sec//title">
<H1>
<xsl:apply-templates select="@*|node()"/>
</H1>
</xsl:template>
<!-- H2 -->
<xsl:template match="sec//sec//title">
<H2>
<xsl:apply-templates select="@*|node()"/>
</H2>
</xsl:template>
<!-- H3 -->
<xsl:template match="sec//sec//sec//title">
<H3>
<xsl:apply-templates select="@*|node()"/>
</H3>
</xsl:template>
</xsl:stylesheet>
...这是不正确的输出:
<?xml version="1.0" encoding="utf-16"?>
<root>
<body>
<sec sec-type="asdf">
<H1>This is an H1</H1>
<sec>
<H2>This is an H2</H2>
<sec>
<H3>This is an H3</H3>
<Flush_Text>This SHOULD be "Body_Text", but it's "Flush_Text"</Flush_Text>
</sec>
<!-- end of H3 -->
</sec>
<!-- end of H2 -->
</sec>
<!-- end of H1 -->
<sec>
<Flush_Text>This is Flush_Text</Flush_Text>
</sec>
<Body_Text>This is Body_Text</Body_Text>
</body>
</root>
请注意,<p>
此示例中的第一个实例应转换为Body_Text
,但它正在转换为Flush_Text
。