Displaying XML element contents with line breaks

Subject: Displaying XML element contents with line breaks
From: hyflam@xxxxxxxxxxxxxxxxxxxx
Date: Fri, 29 Jan 1999 21:22:56 -0500 (EST)
--- Begin Message ---
Subject: Displaying Element Content with Line Breaks
From: hyflam@xxxxxxxxxxxxxxxxxxxx
Date: Thu, 28 Jan 1999 22:44:02 -0500 (EST)
Hi

RE: I want to display a xml file WITH LINE BREAKS after each tag's 
content.

I have this XML file:
...
<FileTag>
      		<IncludeTag>include stdio.h:</IncludeTag>
	</FileTag>
	<FileTag>
		<IncludeTag>include math.h</IncludeTag>
	</FileTag>
...

with this XSL style sheet:

...
<xsl:for-each order-by="+ IncludeTag" select="Language/FileTag">
  	<TD STYLE="padding-left:1em">        
		<SPAN><html:BR><xsl:value-of Select="IncludeTag"/></html:BR></SPAN>
        </TD>      
</xsl:for-each>
...

The result currently is:

"include stdio.h: include math.h"

BUT I want to display it with line breaks:

"include stdio.h
include math.h"

I tried adding <BR></BR> but it didn't work. Can someone please give me 
advice. Thanks for your help

Felix


--- End Message ---
Current Thread