xsl-list
[Top] [All Lists]

Re: [xsl] Removing nodes with text content ?

2011-08-03 09:55:49
On 3 August 2011 15:14, Fabien Tillier <f(_dot_)tillier(_at_)cerep(_dot_)fr> 
wrote:
Hi List.
I am trying to remove some Hierarchy in a document but can't seem to
preserve text content.

I have this kind of xml document (simplified...)
<xml>
       <para>
               <phrase role="rtf">
     norepinephrine
             </phrase>
           <phrase role="rtf">
             transporter<subscript/>
             <emphasis>(h) </emphasis>
          </phrase>
           <phrase role="rtf">
               (antagonist radioligand)
           </phrase>
     </para>
</xml>
...
Thus I want

<xml>
       <para>
               <phrase role="rtf">
     norepinephrine transporter
       <subscript/>
       <emphasis>(h) </emphasis>
            (antagonist radioligand)
       </phrase>
     </para>
</xml>

Any clever hint on how I should proceed ?

If you just want the hint - use xsl:for-each-each with the
group-adjacent attribute.



-- 
Andrew Welch
http://andrewjwelch.com

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>