xsl-list
[Top] [All Lists]

RE: Formatting XML output

2006-01-13 08:48:27
Put this processing instruction in your stylesheet:

<xsl:output method="xml" indent="yes" />

and this single template:

<xsl:template match="*">
  <xsl:copy-of select="." />
</xsl:template>

-- 
Charles Knell
cknell(_at_)onebox(_dot_)com - email



-----Original Message-----
From:     Rick Quatro <frameexpert(_at_)truevine(_dot_)net>
Sent:     Fri, 13 Jan 2006 10:30:25 -0500
To:       <xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com>
Subject:  [xsl] Formatting XML output

Hello All,

I am using MSXML 4.0 to build an XML file. When I write the XML file to 
disk, it is all contained on a single line. I would like to apply an XSLT 
stylesheet to it so that each element is on a separate line with some 
indenting, etc. Is there a simple way to do this? Thanks in advance.

Rick Quatro
Carmen Publishing
585-659-8267
www.frameexpert.com


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--




--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



<Prev in Thread] Current Thread [Next in Thread>