xsl-list
[Top] [All Lists]

Another italic and bold issue

2005-03-18 17:10:29
Hi everyone, thanks in advance for the help. I'm absolutely pulling my
hair out. Here's my xml:

<act>
<section>
 <sectionnumber>1.42</sectionnumber>
 <sectiontext>This is section text this is <b>Bold</b></sectiontext>
<part>
 <partnumber>1.2</partnumber>
 <parttext>This is parttext and <i>Italic</i> text</parttext>
</part>
<section>
<sectionnumber>2</sectionnumber>
<sectiontext>This is sectiontext</sectiontext>
</act>

Ok here's a snippet of my xsl:

<xsl:template match="act">
<html>
<body>
<!--First I write my templates to handle my table of contents -->
<xsl:apply-templates mode="toc"/>
<!--Then I write my templates to handle my content -->
<xsl:apply-templates/>

<!-- I'll just include one example of my templates -->
<xsl:template match="part" mode="toc">
<p><strong><xsl:value-of select="partnumber"/></strong><xsl:value-of
select="parttext"/></p>
<xsl:apply-templates/>

<xsl:template match="text()" mode="toc">
</xsl:template>

Ok, there you go. Now this solution does not show me the italic or
bold I need. I know a lot of people have posted this question but none
of the solutions seem to work for me.

Wrapping the text in CDATA is ugly and produces &lt blah &gt.

This,
<xsl:template match="i">
<!-- and so on -->
only ends up giving me a bunch of i's at the end of my part.

I thought I found a solution with the match(element(name)), but my
xslt doesn't seem to get it.

Any help would be muchly appreciated. I'm using stylus studio if that helps.

Spencer

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



<Prev in Thread] Current Thread [Next in Thread>