RE: [xsl] html Format Problem!

Subject: RE: [xsl] html Format Problem!
From: Jarno.Elovirta@xxxxxxxxx
Date: Fri, 10 Aug 2001 10:54:56 +0300
>   I try to convert a XML to HTML by a XSL, after convert, i 
> found the HTML result is in well 
> form, means e.g.
> 
> <A href="#"><IMG src="#" /></A>
> 
> will become:
> <A href="#">
> <IMG src="#" />
> </A>
> 
> but is it any way to make it original, i don't want the well 
> formed result.

Do you mean not well-formed XML? Use

  <xsl:output method="html" />

or if you meant you don't want the indentation, use

  <xsl:output method="html"
              indent="no" />

Cheers,

Sini

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


Current Thread