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

Re: Transforming XML Blockquotes - Mixed Content

Subject: Re: Transforming XML Blockquotes - Mixed Content
From: James Fuller <jim.fuller@xxxxxxxxxxxxxx>
Date: Wed, 13 Apr 2005 21:48:01 +0200
xml italics
Edward Bryant wrote:

>
> Sorry, I am still a little new to this and I had some trouble
> understanding this response to my post.
>
>> your best bet is to remove all <p/>'s and then apply text() matching
>> template that wraps text with <p/>, along with a blockquote template
>> that just copies itself.
>
>
> If I understand this correctly, the text between two block quotes
> would be treated the same as a simple plain paragraph. I don't think,
> however, this will work because I would lose the attributes of the xml
> tagged paragraphs. My source xml contains paragraphs that contain a
> number attribute, as well as other inline tagging for italics,
> footnotes, etc.
>
> For example:
>
> <paragraph num="1">Yadda Yadda Yadda <italic>Italic Yadda</italic> Yadda:
> <blockquote>Blah Blah Blah Blah</blockquote>
> Yackity Yack Yack</paragraph>
>
ok apply the following to your above xml

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform" >
   
    <xsl:output method="html" encoding="UTF-8" indent="yes"/>

    <xsl:template match="/">
       
        <!-- Transform  -->
        <xsl:variable name="result">
            <xsl:apply-templates select="paragraph"/>
        </xsl:variable>
 
        <!-- Display Results -->
        <xsl:copy-of select="$result"/>
       
    </xsl:template>
   
  <xsl:template match="text()">
        <xsl:if test="normalize-space()">
            <p><xsl:value-of select="normalize-space(.)"/></p>
        </xsl:if>
    </xsl:template>
   
    <xsl:template match="paragraph">
        <xsl:apply-templates/>
    </xsl:template>

    <xsl:template match="italic">
        <i>
            <xsl:value-of select="."/>
        </i>
    </xsl:template> 
   
    <xsl:template match="blockquote">
            <xsl:copy-of select="."/>
    </xsl:template>   
   
</xsl:stylesheet>

some assumptions;

xsl:output method could = xhtml
i matched your italic element and replaced with <i>...I used
xsl:value-of to select on the text..u may want to use xsl:copy-of to
select elements

hth, Jim Fuller

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.