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

Re: splitting the content at each and every element

Subject: Re: splitting the content at each and every element
From: Martin Honnen <Martin.Honnen@xxxxxx>
Date: Wed, 27 May 2009 15:15:00 +0200
Re:  splitting the content at each and every element
Ganesh Babu N wrote:

My input :

<article>
  <para>Countering misinformation <bold>about</bold> vaccines has
become an urgent priority to assure the continued success of
immunization programs. Fortunately, parents continue to seek
information as well as the means to validate what they find. They also
are seeking to identify trusted health providers to give them more
information and guidance.</para>
</article>

Required output:

<text>
  <parastyle>
     <characterstyle style="para">
          <content>Countering misinformation</content>
     </characterstyle>
     <characterstyle type="bold">
          <content>about</content>
      </characterstyle>
      <characterstyle type="para">
           <content> vaccines has become an urgent priority to assure
the continued success of immunization programs. Fortunately, parents
continue to seek information as well as the means to validate what
they find. They also are seeking to identify trusted health providers
to give them more information and guidance</content>
      </characterstyle>
    </parastyle>
 </text>

This would do:


<xsl:stylesheet
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  version="1.0">

  <xsl:output method="xml" indent="yes"/>
  <xsl:strip-space elements="*"/>

  <xsl:template match="para">
    <parastyle>
      <xsl:apply-templates/>
    </parastyle>
  </xsl:template>

  <xsl:template match="para/text()">
    <characterstyle style="para">
      <content>
        <xsl:value-of select="."/>
      </content>
    </characterstyle>
  </xsl:template>

  <xsl:template match="para/*">
    <characterstyle type="{name()}">
      <content>
        <xsl:apply-templates/>
      </content>
    </characterstyle>
  </xsl:template>

  <xsl:template match="article">
    <text>
      <xsl:apply-templates/>
    </text>
  </xsl:template>

</xsl:stylesheet>


--


	Martin Honnen
	http://msmvps.com/blogs/martin_honnen/

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.