|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: element to root
Am I right in guessing that your task is to insert a newline before a <br> element? If I'm right then you just do <xsl:template match="*"> <xsl:copy> <xsl:copy-of select="@*"/> <xsl:apply-templates/> </xsl:copy> </xsl:template> <xsl:template match="br"> <xsl:text>
</xsl:text> <xsl:copy> <xsl:copy-of select="@*"/> <xsl:apply-templates/> </xsl:copy> </xsl:template> Michael Kay http://www.saxonica.com/ > -----Original Message----- > From: jpk [mailto:jopaki@xxxxxxxxx] > Sent: 31 May 2005 17:35 > To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx > Subject: element to root > > Hi all, > > I am still struggling with coming up with an xsl > transform that will convert this source: > > ------ > <p> > <span style="style a"> > span a text 1 > <span style="style b"> > span b pre br text > <br name="b"/> > span b post br text > </span> > span a text 2 > </span> > </p> > ------ > > TO: > > ------ > <p> > <span style="style a"> > span a text 1 > <span style="style b"> > span b pre br text > > <br name="b"/> > span b post br text > </span> > span a text 2 > </span> > </p> > ------ > > > __________________________________________________ > Do You Yahoo!? > Tired of spam? Yahoo! Mail has the best spam protection around > http://mail.yahoo.com
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Cast Your Vote
We need your help – Vote for DataDirect XML Products!
Winners and finalists announced at SOA World Conference in November. Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|







