I'm trying to embed some text into a PDF I generate using XSL-FO/xslt. My text is embedded correctly but the LineFeed and Carriage Returns are removed, so my text file is just a huge block of text.
I'm using unparsed-text() to get the content of the text file. I used the white-space-collapse="false" to try to get the unformatted text.
<fo:block font-family="monospace" white-space-collapse="false" wrap-option="no-wrap">
<xsl:value-of select="unparsed-text($EXTERNAL_DOCUMENT_FILENAME)" disable-output-escaping="yes"/>
</fo:block>
Thank you!
===========
EDIT
I just tried this and I noticed that the output is not formated...
<fo:block font-family="monospace" white-space-collapse="false" wrap-option="wrap">
<!--<xsl:value-of select="unparsed-text($EXTERNAL_DOCUMENT_FILENAME)" />-->
Hi this is me,
Then this is him,
Then I have set the value.
OK?
</fo:block>
I was expecting the exact same text with LF and CR, why?
