Subject: Re: newline white space
From: "Lisa Rupe" <LRupe@xxxxxxxxxxx>
Date: Thu, 19 Jul 2001 20:27:16 -0500
|
Thanks, Jeni.
This solved my problem for the hyphenated words, but where ever there were
other tags in the string, I lost my spaces.
How can I fix this?
Thanks,
Lisa
<p>This is a <b>bold</b> para­<lb/>
graph.</p>
Displays as:
This is aboldparagraph.
<xsl:template match="text()">
<xsl:value-of select="normalize-space()" />
</xsl:template>
<xsl:template match="lb">
<xsl:variable name="text" select="preceding-sibling::text()[1]" />
<xsl:if test="substring($text, string-length($text)) != '­'">
<fo:inline>
<xsl:text> </xsl:text><xsl:apply-templates />
</fo:inline>
</xsl:if>
</xsl:template>
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
| Current Thread |
- newline white space
- Lisa Rupe - Thu, 19 Jul 2001 12:40:51 -0400 (EDT)
- <Possible follow-ups>
- Lisa Rupe - Thu, 19 Jul 2001 21:32:18 -0400 (EDT) <=
|
|