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]

Re: XSL output method="text" and indent preservation



> How can the indentation from the source xml file can be preserved in this
> case. Any pointers please?

that's what happens by default. But you are explictly not copying the
white space text nodes that contain the indentation.

<myelement>
        <childelement> childvalue </childelement>

so the first two children of <myelement> are
1) a text node containing a newline and 8 spaces
2) an element node (childelement)

The default <xsl:apply-templates/> would apply templates to all child
nodes, including text, and the default rule on text would copy the text
node to the result, but you went:


<xsl:value-of select="childelement"/>

which just selects the element nodes and doesn't extract any of the text
nodes from the source. Since you use value-of it would also discard
all but the first childelement.

David

_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.

 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]