This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

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


inchi2000@gmx.de 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]