This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Parsing mixed content nodes


Hello,

I'm writing a stylesheet that converts some HTML code into text.  

For example, this xml:

	<item>
	<p>
	    This is a <a href="link.htm">link</a><br />This is a new
line.
	</p>
	<item>

would be translated into this text:

	This is a link(link.htm) 
	This is a new line.

I can use the descendant axis to retrieve the "p" node, the "a" node,
and the "br" node from the "item" element.

My problem is combining them back together, in the correct order.

I'd like to be able to write XSLT that would output: 

"this is a", then the "a" node, then a line break for the "br" node, and
then output the remaining text.

Does anyone have any ideas?

Thanks very much,
Jason

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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]