NAME
XML::GXML - Perl extension for XML transformation, XML->HTML conversion
SYNOPSIS
use XML::GXML;
my $gxml = new XML::GXML();
# Take a scalar, return a scalar
my $xml = '<basetag>hi there</basetag>';
my $new = $gxml->Process($xml);
# Take a file, return a scalar
print $gxml->ProcessFile('source.xml');
# Take a file, output to another file
$gxml->ProcessFile('source.xml', 'dest.xml');
DESCRIPTION
GXML is a perl module for transforming XML. It may be put to a variety of tasks; in scope it is similar to XSL, but less ambitious and much easier to use. In addition to XML transformations, GXML is well-suited to translating XML into HTML. Please see the documentation with your distribution of GXML, or visit its web site at:
http://multipart-mixed.com/xml/
AUTHOR
Josh Carter, josh@multipart-mixed.com
SEE ALSO
perl(1).