Subject: RE: element to root
From: "Michael Kay" <mike@xxxxxxxxxxxx>
Date: Tue, 31 May 2005 17:48:54 +0100
|
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
| Current Thread |
- element to root
- jpk - 31 May 2005 16:35:02 -0000
- Michael Kay - 31 May 2005 16:49:19 -0000 <=
- David Carlisle - 31 May 2005 16:59:01 -0000
- <Possible follow-ups>
- jpk - 31 May 2005 16:39:37 -0000
|
|