Re: [xsl] special formating (one full line and then start with tabulator)

Subject: Re: [xsl] special formating (one full line and then start with tabulator)
From: "J.Pietschmann" <j3322ptm@xxxxxxxx>
Date: Thu, 25 Jul 2002 23:09:08 +0200
inchi2000@xxxxxx wrote:
Hello,

is it possible to format something like this in xsl (in a <fo:block>):

HEADLINE HERE: The Extensible Markup Language (XML) is the universal format
for structured documents and data on the Web. XML in 10 points explains XML briefly. The base specifications are XML 1.0, W3C Recommendation Feb '98


my xml-file:

<headline>HEADLINE HERE<headline>
<other>The Extensible Markup Language (XML) is the universal format for
structured documents and data on the Web. XML in 10 points explains XML briefly.
The base specifications are XML 1.0, W3C Recommendation Feb '98</other>


I have no idea how to do this. Thanks for your help!


Probably something like
 <fo:block start-indent="1cm" text-indent="-0.5cm">
   <xsl:apply-templates select="headline"/>
   <xsl:text>: </xsl:text>
   <xsl:apply-templates select="other"/>
 </fo:block>

J.Pietschmann



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


Current Thread