Hey guys,
Here's the sitch:
I pass my xsl an xml documen that looks something like this:
<Char Value="S" Bold="True" />
<Char Value="o" Bold="True" />
<Char Value="s" Italic="True" />
What I want to do in my xsl is something like this:
<xsl:if test="Bold='True'">
<fo:block font-weight="bold"></fo:block>
</xsl:if>
Of course, if that code was working, i wouldn't be posting

Anyone have any insight on how I can check a property of my xml node, and assign an fo property to that nodes value?
Thanks,
Jack
Here's the sitch:
I pass my xsl an xml documen that looks something like this:
<Char Value="S" Bold="True" />
<Char Value="o" Bold="True" />
<Char Value="s" Italic="True" />
What I want to do in my xsl is something like this:
<xsl:if test="Bold='True'">
<fo:block font-weight="bold"></fo:block>
</xsl:if>
Of course, if that code was working, i wouldn't be posting
Anyone have any insight on how I can check a property of my xml node, and assign an fo property to that nodes value?
Thanks,
Jack