RE: [xsl] indenting output Q?

Subject: RE: [xsl] indenting output Q?
From: Wolfgang Bogacz <wbogacz@xxxxxxxxxxx>
Date: Thu, 13 Dec 2001 09:09:57 -0500
I think you may find help in the readme.html file with xalan.

Look for the section on Output properties.

-----Original Message-----
From: Joerg Heinicke [mailto:joerg.heinicke@xxxxxx]
Sent: Wednesday, December 12, 2001 3:58 PM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re: [xsl] indenting output Q?


XSL isn't the right thing for formatting the output-tree. The only simple
thing is Oleg's sugestion <xsl:output indent="yes"/>. Then the code looks
like the following:

<ADT_A01>
<MSH>
<MSH.1>|</MSH.1>
<MSH.2>~^\&amp;</MSH.2>

This is still not perfect but better than everything in one line.

The best maybe would be a formatting stylesheet and a
two-step-transformation.

Regards,

Joerg

----- Original Message -----
From: <Jakub.Valenta@xxxxxxxx>
To: <XSL-List@xxxxxxxxxxxxxxxxxxxxxx>
Sent: Wednesday, December 12, 2001 5:16 PM
Subject: [xsl] indenting output Q?


> Hi all,
> I would like to ask how to produce some good looking output with Xalan.
>
> my template is:
> <xsl:template match="event_name">
>           <ADT_A01>
>            <MSH>
>             <MSH.1>|</MSH.1>
>             <MSH.2>~^\&amp;</MSH.2>
>           ...
>
> but the result is:
>
> <ADT_A01><MSH><MSH.1>|</MSH.1><MSH.2>~^\&amp;</MSH.2> ...
>
> and I would like it to be:
>
> <ADT_A01>
>   <MSH>
>     <MSH.1>|</MSH.1>
>     <MSH.2>~^\&amp;</MSH.2>
>     ...
>
> any hints?
>
> br,
>
> Jakub


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

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


Current Thread