Hi All,

 I am trying to process and xml message that contains some in line
bold text marked with <b> some text </b> and i am using

        <xsl:template match="b">
                <fo:inline font-weight="bold">
                        <xsl:apply-templates />
                </fo:inline>
        </xsl:template>
to convert it to XSL FO and similar thing is done for underlining as
        <xsl:template match="u">
                <fo:inline text-decoration="underline">
                        <xsl:apply-templates />
                </fo:inline>
        </xsl:template>

Problem arises when i convert the created XSL FO to a pcl and print
it. In the print i see arbitrary spaces before or after the bolded /
underlined text.

Can any one help me in this regard ?

Thanks!
Sanjeev

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to