Re: XML+XSL -> Formatted Text Report

Subject: Re: XML+XSL -> Formatted Text Report
From: Juergen Baier <x_baier@xxxxxxxxxxxxxxxx>
Date: Wed, 18 Oct 2000 10:25:42 +0200
Hi Albert,

> (1) How to have indentation, linefeed and space precisely placed in
> transformed output?  In my XSL, I use <xsl:text> to represent spaces and
> linefeed.

I use my own entities. These are:

<!ENTITY tab "<xsl:text>    </xsl:text>"> <!-- Tab -->
<!ENTITY tab2 "<xsl:text>        </xsl:text>"> <!-- Two Tabs -->
<!ENTITY tab3 "<xsl:text>            </xsl:text>"> <!-- Three Tabs -->
<!ENTITY tab4 "<xsl:text>                </xsl:text>"> <!-- Four Tabs
-->
<!ENTITY n "<xsl:text>
</xsl:text>"> <!-- New Line -->
<!ENTITY n2 "<xsl:text>

</xsl:text>"> <!-- Two new Lines -->
<!ENTITY n3 "<xsl:text>


</xsl:text>"> <!-- Three new Lines -->

Then you can simply write something like

	&tab2;sometext&n2;
	&tab3;someothertext&n3;

(If I find a good solution to your other answers, I'll post it.)

Have fun,

Juergen

-- 


Juergen Baier


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


Current Thread