ASPN ActiveState Programmer Network
ActiveState
/ Home / Perl / PHP / Python / Tcl / XSLT /
/ Safari / My ASPN /
Cookbooks | Documentation | Mailing Lists | Modules | News Feeds | Products | User Groups


Recent Messages
List Archives
About the List
List Leaders
Subscription Options

View Subscriptions
Help

View by Topic
ActiveState
.NET Framework
Open Source
Perl
PHP
Python
Tcl
Web Services
XML & XSLT

View by Category
Database
General
SOAP
System Administration
Tools
User Interfaces
Web Programming
XML Programming


MyASPN >> Mail Archive >> xsl-list
xsl-list
[xsl] Formatting bold and italics within a paragraph
by Gagan Bhalla other posts by this author
Aug 23 2001 8:37PM messages near this date
Re: [xsl] XPath question | RE: [xsl] Formatting bold and italics within a paragraph
Hello,
I am trying to write a stylesheet that converts paragraphs into fo:blocks
and while doing so, it retains the formatting inside the para, for example
the bold and italic tags embedded inside the <p>  and </p> tags? How do I get
text embedded within a pargraph to get recognized and output in the order it
is encountered?

For example, If I have XML like :
<html xml:lang="en" lang="en"> 
<body> 
<p> This is normal text. This is<b>something in bold </b>Text after bold.
This is <i> In Italics.</i> Text after Italics.</p>
</body> 
</html> 

Currently, I have a template in my stylesheet that tries to detect the child
tags, <b>  and <i> once it reaches a para and output them inline. But it
does'nt get me the text that is within the para but outside the embedded
tags. For example, the output of the above XML upon running thru the XSL
given is missing the "Text after bold. This is" and "Text after Italics." in
it's output.

<fo:block> This is normal text. This is<fo:inline font-style="bold" font-size
="20pt" >  something in bold </fo:inline><fo:inline font-style="italic"
font-size ="20pt" >  In Italics.</fo:inline><fo:inline font-style="normal"
font-size ="10pt" >  This is normal text. This is</fo:inline></fo:block>

Thanks,
Gagan


The stylesheet code fragment looks like this:

<xsl:template match="html/body/p"> 
	<xsl:text disable-output-escaping="yes"> &lt;fo:block&gt;</xsl:text>

	<xsl:value-of select="text()" /> 

	<xsl:for-each select="child::*"> 
		<xsl:choose> 
		<xsl:when test="name()='b'"> 
			<!-- this creates a FO with bold tag --> 
	        	<xsl:text disable-output-escaping="yes"> &lt;fo:inline
font-style="bold" font-size ="20pt" &gt;</xsl:text> <xsl:text>
</xsl:text> <xsl:value-of select="." />
	        	<xsl:text
disable-output-escaping="yes"> &lt;/fo:inline&gt;</xsl:text>

		</xsl:when> 
		<xsl:when test="name()='i'"> 
			<!-- this creates a FO with italicized text --> 
	        	<xsl:text disable-output-escaping="yes"> &lt;fo:inline
font-style="italic" font-size ="20pt" &gt;</xsl:text> 			<xsl:text>
</xsl:text> <xsl:value-of select="." />
	        	<xsl:text
disable-output-escaping="yes"> &lt;/fo:inline&gt;</xsl:text>

		</xsl:when> 
		<xsl:otherwise> 
			<!-- this creates a FO with normal text --> 
	        	<xsl:text disable-output-escaping="yes"> &lt;fo:inline
font-style="normal" font-size ="10pt" &gt;</xsl:text> 			<xsl:text>
</xsl:text> <xsl:value-of select="." />
	        	<xsl:text
disable-output-escaping="yes"> &lt;/fo:inline&gt;</xsl:text>
		</xsl:otherwise> 
		</xsl:choose> 
	</xsl:for-each> 

	<!-- remainder of the para after reading all embedded tags --> 
	 <xsl:text disable-output-escaping="yes"> &lt;fo:inline font-style="normal"
font-size ="10pt" &gt;</xsl:text> <xsl:text> 	</xsl:text><xsl:value-of
select="text()" /> <xsl:text
disable-output-escaping="yes"> &lt;/fo:inline&gt;</xsl:text>
	<xsl:text disable-output-escaping="yes"> &lt;/fo:block&gt;</xsl:text>
</xsl:template> 



 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
Thread:
Gagan Bhalla
Corey Spitzer

Privacy Policy | Email Opt-out | Feedback | Syndication
© ActiveState Software Inc. All rights reserved