[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Question re: unwanted whitespace and html output

  • From: "Thomas B. Passin" <tpassin@h...>
  • To: xml-dev@l...
  • Date: Fri, 20 Jul 2001 18:33:21 -0400

html unwanted line break
Why do you care about the line breaks?  Maybe it won't really matter.  :-)

The reason you get a line break in the output is that there is one in the
stylesheet:

 <xsl:template match="b">
 <span class="smtext_bold">   <----- LF right here!
 <xsl:apply-templates/>         <----- and here!

You will probably get what you want with this change:
 <xsl:template match="b"
 ><span class="smtext_bold"
 ><xsl:apply-templates
 /> </span>

(NOTE - These leading ">" are NOT from quoting your post in this reply, they
are how the stylesheet should read.)

Now there are no extra line feeds or other whitespace to show up.  The price
is that the stylesheet becomes less readable, so do it when everything else
works right.

Cheers,

Tom P

[Mike Freestone]

> Please help! I have been racking my brains trying to figure out how to get
> the following content to be output correctly:
>
> <content>
>     <content-section>
>         <p>some text <b>exit</b>, some more text that has a colon</p>
>     </content-section>
>     ...
> </content>
>
> ***********
>
> Example of my XSL templates used to produce the example output below:
>
> <xsl:template match="text()">
> <xsl:value-of select="." disable-output-escaping="yes"/>
> </xsl:template>
>
> <xsl:template match="b">
> <span class="smtext_bold">
> <xsl:apply-templates/>
> </span>
> </xsl:template>
>
> **********
>
> Example of current html output:
>
> ... some text <span class="smtext_bold">
> exit
> </span>
> , some more text that has a comma ...
>
> Notice that the span tags and following text is on separate lines.
>
> **********
>
> Example of desired output:
>
> ... some text <span class="smtext_bold">exit</span>, some more text that
> includes a comma...
>
> Notice that I am trying get both span tags and the following apostrophe to
> be on the same line.
>
> When the span tags and following comma is on separate lines the word
"exit"
> and the comma have a display in the browser with space between them (ie,
> "exit , " instead of "exit, ").
>
> Any help would truly be appreciated.
>
> Mike Freestone
> mikefreestone@h...
>
>
> _________________________________________________________________
> Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp
>
>
> ------------------------------------------------------------------
> The xml-dev list is sponsored by XML.org <http://www.xml.org>, an
initiative of OASIS <http://www.oasis-open.org>
>
> The list archives are at http://lists.xml.org/archives/xml-dev/
>
> To unsubscribe from this elist send a message with the single word
> "unsubscribe" in the body to: xml-dev-request@l...


PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
 

Stylus Studio has published XML-DEV in RSS and ATOM formats, enabling users to easily subcribe to the list from their preferred news reader application.


Stylus Studio Sponsored Links are added links designed to provide related and additional information to the visitors of this website. they were not included by the author in the initial post. To view the content without the Sponsor Links please click here.

Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.