c# - white space in xslt -
i'm trying generate report contains white spaces make content looks good. problem reason number of spaces being fixed or reduced in cases.
for example i've got content should this:
formatted text
but looks this
not formatted text
and xslt block this:
<fo:block white-space-collapse="false" usage-context-of-suppress-at-line-break="ignore"> <xsl:variable name="report_text"> <value> <xsl:value-of select="report_text" /> </value> </xsl:variable> <xsl:value-of select="dataconvertobject:converttoplaintext($report_text)" /> </fo:block>
any ideas? suggestions?
i found solution,
the problem each alphabet font i've chosen in different size i've changed font this:
<fo:table-cell column-number="2" number-columns-spanned="5" font-family="lucida console" >
and works fine
Comments
Post a Comment