OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Question re: unwanted whitespace and html output



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@hotmail.com
>
>
> _________________________________________________________________
> 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@lists.xml.org