Provided by: libxml-filter-xslt-perl_0.03-8_all bug

NAME

       XML::Filter::XSLT - XSLT as a SAX Filter

SYNOPSIS

         use XML::SAX::ParserFactory;
         use XML::Filter::XSLT;
         use XML::SAX::Writer;

         my $writer = XML::SAX::Writer->new();
         my $filter = XML::Filter::XSLT->new(Handler => $writer);
         my $parser = XML::SAX::ParserFactory->parser(
                         Handler => $filter);
         $filter->set_stylesheet_uri("foo.xsl");
         $parser->parse_uri("foo.xml");

DESCRIPTION

AUTHOR

LICENSE