This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: A simple basic question



Hi Philip,
try this one:

<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl
="http://www.w3.org/1999/XSL/Transform";>
   <xsl:template match="/">
      <body>
         <xsl:apply-templates select="document" />
      </body>
   </xsl:template>

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

   <xsl:template match="paragraph">
      <p>
         <xsl:apply-templates />
      </p>
   </xsl:template>

   <xsl:template match="bold">
      <b>
         <xsl:value-of select="./text()" />
      </b>
   </xsl:template>

   <xsl:template match="italic">
      <i>
         <xsl:value-of select="./text()" />
      </i>
   </xsl:template>
</xsl:stylesheet>

hope it helps

br,

Jakub





Philip Mak <pmak@aaanime.net>@lists.mulberrytech.com on 05/06/2002 02:38:53
PM

Please respond to xsl-list@lists.mulberrytech.com

Sent by:  owner-xsl-list@lists.mulberrytech.com


To:   xsl-list@lists.mulberrytech.com
cc:

Subject:  [xsl] A simple basic question

I looked at various XSL guides, but I still can't figure out how to
transform this:

<document>
<paragraph>Here is a <bold>bold</bold> word.</paragraph>
<paragraph>Here is an <italic>italic</italic> word.</paragraph>
</document>

into this:

<body>
<p>Here is a <b>bold</b> word.</p>
<p>Here is an <i>italic</i> word.</p>
</document>

The part I have trouble with is the <bold> and <italic>. The thing is
that they could appear anywhere in the document; they're not part of a
rigid structure. It seems that when I use <xsl:value-of
select="paragraph">, the <bold> and <italic> tags inside just get
stripped out.

Any suggestions?

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list






 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]