使用XSLT 1.0在两个标记出现之间包装所有内容

时间:2016-06-11 19:21:00

标签: xml xslt xslt-1.0 xslt-grouping libxslt

我想通过顶级h1标记分割XML(实际上是XHTML)文档。从<h1>的第一个开始直到下一个的所有内容都应该包含在<section>元素中,依此类推,直到文档结束。

例如,如果我有这个源文档:

<article>
    <h1>Heading 1</h1>
    <p>Some text</p>
    <p>Some more text</p>

    <h1>Heading 2</h1>
    <p>Some text</p>
    <h2>Subheading</h2>
    <p>Some text</p>

    <h1 id="heading3">Heading 3</h1>
    <p>Some text</p>
</article>

我希望结果完全像这样:

<article>
    <section>
        <h1>Heading 1</h1>
        <p>Some text</p>
        <p>Some more text</p>
    </section>
    <section>
        <h1>Heading 2</h1>
        <p>Some text</p>
        <h2>Subheading</h2>
        <p>Some text</p>
    </section>
    <section>
        <h1 id="heading3">Heading 3</h1>
        <p>Some text</p>
    </section>
</article>

问题是我只有libxslt1.1(因此,XSLT 1.0 + EXSLT)。使用XSLT 2.0,我可以用漂亮的<xsl:for-each-group select="*" group-starting-with="h1">做一些事情,但遗憾的是,它对我来说不是一个可行的选择。

我不想对属性值进行分组(我没有任何有意义的属性),因此,据我所知,Muenchian分组并不是一个对我有用的技巧。也许我错了 - 我几分钟前才读过这个方法。

有没有办法用XSLT 1.0实现这个目标?

2 个答案:

答案 0 :(得分:2)

  

据我所知,Muenchian分组并不是一个可行的技巧   对我来说。

嗯,非常接近它的东西:

XSLT 1.0

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

<xsl:key name="grpById" match="*[not(self::h1)]" use="generate-id(preceding-sibling::h1[1])" />

<xsl:template match="/article">
    <xsl:copy>
        <xsl:for-each select="h1">
            <section>
                <xsl:copy-of select=". | key('grpById', generate-id())"/>
            </section>
        </xsl:for-each>
    </xsl:copy>
</xsl:template>

</xsl:stylesheet>

答案 1 :(得分:2)

使用密钥name="group" match="article/*[not(self::h1)]" use="count(preceding-sibling::h1)",然后在匹配article的模板中将模板应用于h1子元素,并在h1的模板中创建该部分并复制{{ 1}}。