Hi i'm using this tuto as base to try to transform my html to xsl:fo
http://www.ibm.com/developerworks/library/x-xslfo2app/#example so in inlcude the xsl template given by the autor which define for exemple template for the element <b> like: ******************************************************** <xsl:template match="b"> <fo:inline font-weight="bold"> <xsl:apply-templates select="*|text()"/> </fo:inline> </xsl:template> ******************************************************** and in my xsl:template i import the template: <xsl:import href="xhtml-to-xslfo.xsl"/> and call the template true <xsl:for-each select="/rapport/resTechContribution/text1"> <xsl:apply-templates select="b" /> </xsl:for-each> anybody got similar experience!? i readed in the wiki that jtidy tranform xhtml to xsl:fo any example available? and thanks
