Re: [xsl] multiple XML tags -> single output

Subject: Re: [xsl] multiple XML tags -> single output
From: "Kevin McCarthy" <Kevin@xxxxxxxxxxxx>
Date: Wed, 27 Dec 2000 15:26:43 -0800
>What I'd like is to also use information from <issue> in that output, so as
>to get something like
>
>-------------------------
>        <h1>
>            A Name #10 For 2000/11/11
>        </h1>
>--------------------------

Hey Zach,

I think you'd want to do something like this:

    <xsl:template match="title">
        <h1>
            <xsl:value-of select="."/><xsl:value-of select="issue/@num"
/><xsl:value-of select="issue/@date" />
        </h1>
    </xsl:template>


-Kevin




 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread