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

Re: matching xhtml tags

Subject: Re: matching xhtml tags
From: Hank Ratzesberger <hankr@xxxxxxxx>
Date: Fri, 02 Sep 2011 16:12:42 -0700
Re:  matching xhtml tags
On 9/2/11 3:27 PM, deloptes wrote:
Hi,

nice to meet you.

I'm using often xsl to process xml files, but for first time I'm trying to
do something with a xhtml file. I probably don't do something right, but my
xsl is matching only the "/" tag and the tags are stripped only the text
part is displayed.

I'm using Xalan, but tried also the java version and xsltproc and all behave
the same. The part below should work, but doesn't.

I would be very thankful for some help

thanks in advance

regards

...

<xsl:output encoding="UTF-8" method="xml" indent="yes"/>

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

<xsl:template match="html">
         <document>
                 <title>
                         <xsl:value-of select="head/title"/>
                 </title>
                 <xsl:apply-templates select="body"/>
         </document>
</xsl:template>

The processor is falling through (with no specific match) to the default template, which outputs the text content.

Perhaps what you want to do is

<xsl:copy-of select="body"/>

To "paste in" the body element and its children as is.

---Hank




-- Louis (Hank) Ratzesberger hankr@xxxxxxxx Scripps Orbit and Permanent Array Center Mailing Address: Mail Code 0225 9500 Gilman Drive University of California, San Diego La Jolla, CA 92093-0225 858-822-4472 IGPP/SIO Location: Bldg T-31 8860 Biological Grade

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.