Okay, I tried putting an <xsl:output method="html"/> tag into my stylesheet,
but it still isn't translating < and &. Also, if I change the method
to "txt" I get an error ("conflicting attribute 'method' on xsl:output,
using last").
Here're my test files....
% cat /tmp/t.xsl
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:output method="html" encoding="utf-8"/>
<xsl:template match="/text">
<HTML>
this is a test of <, > and &.
</HTML>
</xsl:template>
</xsl:stylesheet>
% cat /tmp/t.xml
<?xml version="1.0" encoding="utf-8"?>
<text>
this is a test
</text>
% sabcmd /tmp/t.xsl /tmp/t.xml
<HTML>
this is a test of <, > and &.
</HTML>
%
I'm sure I'm missing something simple here, but I'm just not familar enough
with Sablotron (or, admittedly, XML/XSL) to spot it.
Thanks again, all!
david.