Subject: | Synopsis should use ->parser instead of ->new ? |
Hi there,
Just a minor issue with the synopsis - 0.00003 suggests:
XML::SAX::ParserFactory->new(Handler => $handler)
but that'll instantiate a XML::SAX::ParserFactory object, so there's no
parse_chunk method. This seems to work better:
XML::SAX::ParserFactory->parser(Handler => $handler)
Apart from that, I've found this to be a very useful module, many thanks!
Tom