Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.


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

share|improve this question

3 Answers

up vote 10 down vote accepted

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.

share|improve this answer

Alternatively,

<fo:block white-space-treatment="preserve"> </fo:block>
share|improve this answer

Or

<xsl:template match="p">
    <fo:block>
            <xsl:apply-templates/>
            &#x00A0;
    </fo:block>

&#x00A0; is the equivalent of &nbsp; in HTML (actually &nbsp; is a XML entity that is defined as A0 which is the Unicode character for Non Breaking Space).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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