vote up 0 vote down star

Hi,
having a quite simple template:

<xsl:template match="p">
	<fo:block>
		<xsl:apply-templates/>
	</fo:block>
</xsl:template>

I ask myself how to tell FO to keep empty lines if the block is empty.

Cheers
Jan

flag

2 Answers

vote up 1 vote down

Just add a <fo:leader/> element at the end of your <fo:block>. Like this:

<xsl:template match="p">
        <fo:block>
                <xsl:apply-templates/>
                <fo:leader />
        </fo:block>
</xsl:template>

The leader will do nothing for lines with content, and will create an empty line for lines without content.

Tested with Apache FOP and XEP.

link|flag
vote up 0 vote down

Alternatively,

<fo:block white-space-treatment="preserve"> </fo:block>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.