Wrox Programmer Forums
Go Back   Wrox Programmer Forums > XML > XSLT
|
XSLT General questions and answers about XSLT. For issues strictly specific to the book XSLT 1.1 Programmers Reference, please post to that forum instead.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the XSLT section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old December 28th, 2006, 02:38 AM
Registered User
 
Join Date: Dec 2006
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default Render HTML tags

I have this XML:

Code:
<text>
    This is some text.<br /><br /><quote>This is a quote.</quote>
    <br /><br />Some more text.<br /><br />One more line.
</text>
The XSL:

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

<xsl:template match="quote">
   <blockquote>
       <xsl:copy-of select="."/>
   </blockquote>
</xsl:template>
The problem:
The linebreaks don't render. Is there a way around this?
 
Old December 28th, 2006, 07:03 PM
mhkay's Avatar
Wrox Author
 
Join Date: Apr 2004
Posts: 4,962
Thanks: 0
Thanked 292 Times in 287 Posts
Default

You need to add another template rule:

<xsl:template match="br">
  <br/>
</xsl:template>

The default rule copies the content of an element but not the tags.

Michael Kay
http://www.saxonica.com/
Author, XSLT Programmer's Reference and XPath 2.0 Programmer's Reference





Similar Threads
Thread Thread Starter Forum Replies Last Post
gridview render tags SKhna ASP.NET 2.0 Basics 2 April 14th, 2008 08:23 PM
Extending HtmlForm to render valid HTML rdove84 ASP.NET 1.0 and 1.1 Professional 0 March 8th, 2007 06:13 PM
html:text render the value when error comes in jsp srikanth_bsb Struts 0 February 20th, 2007 03:54 AM
Render HTML inside CDATA with XSL c2c XSLT 0 September 10th, 2006 11:10 AM
Eliminating HTML TAGs beyondforsaken VB How-To 12 June 12th, 2003 08:00 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.