Re: pre-formatted text in FO terminology

Subject: Re: pre-formatted text in FO terminology
From: "Sebastian Rahtz" <sebastian.rahtz@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx>
Date: Sun, 1 Aug 1999 17:04:08 +0100 (BST)
Michel Goossens writes:
 > How can I express the fact that a <fo:block> area
 > contains pre-formatted text (that does not have to
 > be formatted, but output honoring the line-breaks,
 > multiple spaces, etc.)? In other words,how would I write
 > the equivalent of a <PRE>...</PRE> element using,
 > presumably an fo:block with a set of attributes, thus:
 > <fo:block which-attributes-here??...> 
 > 
my equivalent is

<xsl:template match="eg">
    <fo:block font-family="{$TypeWriterFont}" 
	wrap-option="no-wrap" 
	text-align="start"
	font-size="{$ExampleSize}"
	space-before.optimum="4pt"
	space-after.optimum="4pt"
	>
      <xsl:apply-templates/>
    </fo:block>
</xsl:template>

and seems to work. just the "wrap-option" attribute.

sebastian


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread