The problem i'm having is displaying two block tags on one line:
<fo:table-cell>
<fo:block color="#808080" font-size="30px" font-weight="bold">
<xsl:text>Lot: </xsl:text>
</fo:block>
<fo:block>
<xsl:value-of select="$test/lot"></xsl:value-of>
<xsl:text>
</xsl:text>
</fo:block>
</fo:table-cell>
this shows up as:
LOT:
some_value
i want ti so show as:
LOT: some_value
*edit: < fo:inline > doesn't work at all. throws an error.