[Home] [By Thread] [By Date] [Recent Entries]
Hi: It means that para is not one of the elements supported by FO. The copy-of statement is copying the para element to the output, and XEP doesn't recognize it as valid FO (because it isn't). You should write a template to handle the para element, too. For example: <xsl:template match="a"> <xsl:apply-templates/> </xsl:template> <xsl:template match="para"> <fo:block><xsl:apply-templates/></fo:block> </xsl:template> Now the contents of your para appear in an FO block element. Assuming you don't have similar problems elsewhere and that you have declared the FO namespace in an appropriate place, those two templates should solve the problem. Jay Bryant Bryant Communication Services
|

Cart



