[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Preserve some tags, but ignore same

Subject: Re: Preserve some tags, but ignore same
From: "Joris Gillis" <roac@xxxxxxxxxx>
Date: Tue, 13 Sep 2005 08:54:50 +0200
xslt preserve tags
Hi,

Tempore 01:12:30, die 09/13/2005 AD, hinc in xsl-list@xxxxxxxxxxxxxxxxxxxxxx scripsit Matthew Fonda <mfonda@xxxxxxxxxx>:

there are multiple div's in each document, but only the first one
contains an h1, and the I am trying to get the text of the p following
the h1, but before the br in the p, so
<p><i><b>Excerpt from </b></i><b>Journal of Theodore
Upson</b><br/><b>Written in April 1861; originally published in
1943</b></p>
would become
<p>Excerpt from Journal of Theodore Upson</p>

XSLT works with elements, not tags.


Here's one type of solution.

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" indent="yes"/>

<xsl:template match="node()|@*">
	<xsl:copy>
		<xsl:apply-templates select="node()|@*" />
	</xsl:copy>
</xsl:template>

<xsl:template match="div/p[preceding::*[1][self::h1]]">
<xsl:copy>
	<xsl:apply-templates select="@*" />
	<xsl:if test="br">
		<xsl:copy-of select="br[1]/preceding-sibling::node()/descendant-or-self::text()"/>
	</xsl:if>
	<xsl:if test="not(br)">
		<xsl:value-of select="."/>
	</xsl:if>
</xsl:copy>
</xsl:template>

</xsl:stylesheet>

regards,
--
Joris Gillis (http://users.telenet.be/root-jg/me.html)
B+Et ipsa scientia potestas estB;  - Francis Bacon , Meditationes sacrae

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.