I am a fop newbee and started using fop a couple of days ago.
Everything works fine but I have one problem.
1. I have a XML-file where some entity values is marked with CDATA
..
<helpText>![CDATA[Some #¤%&/()]]</helpText>
....
2 I generate PDF-file with the statement below
..
<fo:table-cell>
<fo:block>
<xsl:value-of select="helpText"/>
</fo:block>
</fo:table-cell>
...
<fo:block>
<xsl:value-of select="helpText"/>
</fo:block>
</fo:table-cell>
...
3 In the PDF-file I expect the text to be like
...
Some #¤%&/())
...
but I get all the text including the CDATA declaration
..
![CDATA[Some #¤%&/())]]
...
I hope someone understands what I mean I can give a hint on what to do about it.
Regards
Lars Hagrot