Re: [xsl] Newbie question--applying templates, selecting paragrap hs

Subject: Re: [xsl] Newbie question--applying templates, selecting paragrap hs
From: "J.Pietschmann" <j3322ptm@xxxxxxxx>
Date: Fri, 24 May 2002 02:21:28 +0200
Grant-Kathryn@xxxxxxxxxxxxxxxxx wrote:
Thanks for your reply!  I tried what you suggested, but unfortunately it
still copied all the paragraphs, including the paragraphs in the <div
class="mgronly"> tags.  This is the XSL file I ended up with . . .

The problem is that your div elements exist in the XHTML namespace.
Declare the namespace in your style sheet:

 <xsl:stylesheet
   xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
   xmlns:xhtml="http://www.w3.org/1999/xhtml";
   version="1.0">

and use the xhtml prefix in the match pattern:

<xsl:template match="xhtmldiv[@class='mgronly']"/>

HTH
J.Pietschmann


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



Current Thread