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: Formating to text


> The problem here is indeed to keep control over the horizontal position
> and current value of the indentation to generate the line breaks while
> running through the tree.
> Updatable variables are eagerly missing here and I don't see how you can
> easily perform this task which would be trivial with any procedural
> language.
> Have I missed something ?

Can you do it instead by counting the depth of the node that you are
handling?  You could use the ancestor:: axis, or a subset of what you
find along there, i.e., write a template named 'indent' which will
indent n spaces per level, and call it with:

	<xsl:call-template name="indent">
          <xsl:with-param name="level" 
                        select="count(ancestor::*)"/>
        </xsl:call-template>

 Steve


 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]