Re: [xsl] grouping headers
by Jeni Tennison other posts by this author
Aug 24 2001 9:48AM messages near this date
RE: [xsl] grouping headers
|
RE: [xsl] FW: Toggling radio buttons
Hi Corey,
Just a quick thing - you're using disable-output-escaping where you
don't need to, i.e.:
> <xsl:text disable-output-escaping="yes">
> </xsl:text> <!-- hard return to make it look pretty -->
Disable-output-escaping disables output escaping - it stops < and &
signs from being escaped (as < and &) when they're serialised
in the output. It will only have an effect on characters that are
escaped when they're output; line breaks are not one of these
characters, so the above is exactly the same as:
<xsl:text>
</xsl:text> <!-- hard return to make it look pretty -->
The other thing that I find makes this look neater is to use a
character reference for the line break rather than the character
itself. The above is exactly the same as:
<xsl:text> 
</xsl:text><!-- hard return to make it look pretty -->
or:
<xsl:text> </xsl:text><!-- hard return to make it look pretty -->
Cheers,
Jeni
---
Jeni Tennison
http://www.jenitennison.com/
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
Thread:
Elisabeth Kaminski
Jeroen Janssen
Jeni Tennison
Corey Spitzer
Jeni Tennison
Robert Koberg
Elisabeth Kaminski
Robert Koberg
Elisabeth Kaminski
Robert Koberg
Robert Koberg
Elisabeth Kaminski
|