|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: A problem with [embedded templates???]
From: David Carlisle [mailto:davidc@xxxxxxxxx] Sent: Monday, October 04, 1999 11:46 AM > <xsl:template match="title"> > <h1><xsl:apply-templates/></h1> > </xsl:template> > > <xsl:template match="italics"> > <i><xsl:apply-templates/></i> > </xsl:template> for: <title>This is some <italics>text</italics> in some XML</title> this gives me empty tags (<h1><i></i></h1>) The closest I can get is the following: <xsl:template match="title"> <h1><xsl:value-of select="."/></h1> </xsl:template> <xsl:template match="italics"> <i><xsl:value-of select="."/></i> </xsl:template> which gives me the entire text but the italics template doesn't get called, or I can do things like this: <xsl:template match="title"> <h1><xsl:apply-templates/><xsl:value-of select="."/></h1> </xsl:template> or <xsl:template match="title"> <h1><xsl:value-of select="."/><xsl:apply-templates/></h1> </xsl:template> which gives me all of the text, with no formatting, and ALSO places the formatted italicized text either before or after the main text. XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








