|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: Tricky White Spaces being ignored
Hi,
> I have the following (example) template rule(s) along with
> the outputed
> result (surrounded by ==== to show where output begins and ends:
>
> <xsl:template match="br"> </xsl:template>
> ====Dear Mr. Schmidt, We would like to take this opportunity to...====
>
> <xsl:template match="br"> x</xsl:template>
> ====Dear Mr. Schmidt,
>
> x
> xWe would like to take this opportunity to...====
>
> <xsl:template match="br"> x</xsl:template>
> ====Dear Mr. Schmidt,
> xWe would like to take this opportunity to...====
>
> (last example is closest to right)
>
> NOTE: The only way I get these or to create a
> line break in my
> textarea is if I include a real character (character "x" above) in the
> template rule. Then it works fine. What gives? It is
> almost like the
> template rule is ignored otherwise.
The white space is stripped, see <http://www.w3.org/TR/xslt#strip>. Wrap the LINE FEED character into xsl:text:
<xsl:template match="br">
<xsl:text>
</xsl:text>
</xsl:template>
Cheers,
Jarno
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








