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]
Other format: [Raw text]

RE: XSLT Whitespace ???



You could output the result in <table><tr><td>.... etc.,
then the columns would have alignment.

-----Original Message-----
From: owner-xsl-list@lists.mulberrytech.com
[mailto:owner-xsl-list@lists.mulberrytech.com]On Behalf Of Ragan, Mitch
Sent: Monday, February 11, 2002 5:36 PM
To: xsl-list@lists.mulberrytech.com
Subject: [xsl] XSLT Whitespace ???



How do I insert Whitespace?

XSLT: 
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
<xsl:output method="html" version="1.0" encoding="UTF-8" indent="yes"/>

  <xsl:template match="//Quote">
	   <xsl:value-of select="@date"/>
	  <xsl:value-of select="."/>  
  </xsl:template>
</xsl:stylesheet> 

Output: 
2001-09-15$12.30
2001-10-15$ 14.95
2001-11-15$16.00

Desired Output (with some space between Date and Price): 
2001-09-15        $12.30
2001-10-15        $14.95
2001-11-15        $16.00

XML File:
  <Quotes>
    <Quote symbol="MCDTA" date="2001-09-15">$12.30</Quote>
    <Quote symbol="MCDTA" date="2001-10-15">$14.95</Quote>
    <Quote symbol="MCDTA" date="2001-11-15">$16.00</Quote>
  </Quotes>


  Mitch K. Ragan 
    Boeing Commercial Aircraft Group 
    Global Electronic Commerce 
    Senior Systems Analyst 
    Primary: 425-266-3155
    Secondary: 425-237-1735


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


 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]