OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: Output Indenting with XSL



try writing it literally in your stylesheet the way you want it output:

<xsl:template match="/">
<HTML>
	<BODY>
		<xsl:apply-templates />
	</BODY>
</HTML>
</xsl:template>


: -----Original Message-----
: From: Tigran Hayrapetyan [mailto:tigranhdev@hotmail.com]
: Sent: Tuesday, March 06, 2001 17:58
: To: xml-dev@lists.xml.org
: Subject: Output Indenting with XSL
:
:
: Does anybody know how to force a nicely indented HTML output for
: the result
: of applying XSL to XML?
:
: I am expecting something like this:
: <HTML>
:   <HEAD>
:   </HEAD>
:   <BODY>
:      <P>asasa</P>
:      <P>asdasdasd</P>
:   </BODY>
: </HTML>
:
: I tried putting this kind of statement in the XSL to no avail.
: <xsl:output method="html" version="4.0" indent="yes"/>
:
: I also tried:
: <xsl:output method="xml" version="1.0" indent="yes"/>
:
: I am using MSXML 3.0, and I am calling transformNode and then writing the
: output to the file. I also tried mocking with preserveSpace attribute.
:
: Thanks,
: Tigran
: _________________________________________________________________________
: Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.
:
:
: ------------------------------------------------------------------
: The xml-dev list is sponsored by XML.org, an initiative of OASIS
: <http://www.oasis-open.org>
:
: The list archives are at http://lists.xml.org/archives/xml-dev/
:
: To unsubscribe from this elist send a message with the single word
: "unsubscribe" in the body to: xml-dev-request@lists.xml.org
: