xslt output encoding

Encoding

1. How to get ISO 8859-1 output from XT
2. XT and encodings

1.

How to get ISO 8859-1 output from XT

JC

JC (Aug 1999)

With the current XT you can just do

<xsl:output method="html" encoding="iso-8859-1"/>
            

2.

XT and encodings

James Clark


On input, it's up to the XML parser you use.  If you're
using XP, it doesn't support iso-8859-2.  It only supports
iso-8859-1, us-ascii, utf-8 and utf-16.

On output, it depends on the output method. The XML output
method supports only UTF-8.  The other output methods
support any encodings supported by your Java VM.