RE: [xsl] conversion problem

Subject: RE: [xsl] conversion problem
From: "Zwetselaar M. van (Marco)" <Marco.van.Zwetselaar@xxxxxxxxxxxxx>
Date: Tue, 25 Sep 2001 12:14:36 +0200
Andreas Putscher wrote:
> I have the following expression:
> 
> <item>Item with bullet list
>   <bulletlist>
>    <item>Item 1.1</item>
>    <item>Item 1.2</item>
>    <item>Item 1.3</item>
>   </bulletlist>
> </item>
> 
> I would like to translate it into:
> 
> <p>Item with bullet list</p>
> <p>Item 1.1</p>
> <p>Item 1.2</p>
> <p>Item 1.3</p>
> 
> my solution isnt working:

<xsl:template match="item">
	<p><xsl:value-of select="text()" /></p>
	<xsl:apply-templates select="bulletlist" />
</xsl:template>

Regards,
Marco


***************************DISCLAIMER***********************************
Deze e-mail is uitsluitend bestemd voor de geadresseerde(n). 
Verstrekking aan en gebruik door anderen is niet toegestaan.
Fortis sluit iedere aansprakelijkheid uit die voortvloeit uit
electronische verzending.

This e-mail is intended exclusively for the addressee(s), and may
not be passed on to, or made available for use by any person 
other than the addressee(s).
Fortis rules out any and every liability resulting from any
electronic transmission.
************************************************************************

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


Current Thread