OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

docbook message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: Line break mistery


Hi List.

I am using the XSL Stylesheets (v 1.75.1) to transform some docbook xml to either HTML or XSL-FO.
I would like to have some line-breaks, thus I added
<?linebreak?>
Instructions in my XML.
It is working in my HTML template with
<xsl:template match="processing-instruction('linebreak')">
	<br/>
</xsl:template>
(I have a customization template)
But when I switch to xsl-fo output, 
My template (here with big text so that I can see it easily in the output) is never called.

<xsl:template match="processing-instruction('linebreak')">
	###########################################################
	<fo:block></fo:block>
	###########################################################
</xsl:template>


Is there a parameter or something to be set so that this processing instruction can be used ?
Thanks in advance,
Best regards,
Fabien


[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]