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]

text()


I'm trying to locate content which is #PCDATA which is a child
of body (html after tidy).

I have a source file

<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <meta name="generator" content="HTML Tidy, see www.w3.org" />
  <title>DAISY Specification draft 2.02.04</title>
  <link rel="STYLESHEET" href="d202.css" type="text/css" />
  <meta />
 </head>
 <body>
    
  <h1>DAISY 2.02 Specification</h1>
  
  <p>DRAFT 2.02.05, November 6, 2000</p>
  
  <h2 id="abstract">Abstract</h2>
  
  This document defines version 2.02 of the DAISY Digital Talking
Book format.


My stylesheet reads

<xsl:template match="/">
  <xsl:apply-templates select="html/body/child::text()"/>
</xsl:template>

<xsl:template match="html/body/text()">
<xsl:if test="string(.)">
  <wrap-it>
          <xsl:value-of select="."/>
        </wrap-it>
        </xsl:if>
      
 
</xsl:template>

<xsl:template match="*"/>


any suggestions why it doesn't work please?
I expected it to find "This document defines....


TIA, DaveP


 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]