NAME
XML::LibXSLT::Easy - DWIM XSLT processing with XML::LibXSLT
SYNOPSIS
use XML::LibXSLT::Easy;
my $p = XML::LibXSLT::Easy->new;
my $output = $p->process( xml => "foo.xml", xsl => "foo.xsl" );
# takes various types of arguments
$p->process( xml => $doc, xsl => $filehandle, out => $filename );