XML::LibXSLT::Easy - DWIM XSLT processing with L<XML::LibXSLT> |
XML::LibXSLT::Easy - DWIM XSLT processing with the XML::LibXSLT manpage
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 );
XML::LibXSLT::Easy - DWIM XSLT processing with L<XML::LibXSLT> |