[XSL-LIST Mailing List Archive Home]
[By Thread]
[By Date]
RE: [xsl] counting the no of lines in the output html file.
Subject: RE: [xsl] counting the no of lines in the output html file.
From: <Jarno.Elovirta@xxxxxxxxx>
Date: Mon, 3 Jan 2005 09:55:29 +0200
|
Hi,
> I need to include a header after every 80 lines
> of output in the transformed html page. I am able to
> count the total no of lines. But how to identify that
> the number of line after which I need to include a
> header.
E.g. test="count(preceding::line) mod 80 = 0" or test="$i mod 80 = 0" when $i
is the line number being processed.
Cheers,
Jarno
|