The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Biblio::Document::Parser - document parsing framework

DESCRIPTION

Biblio::Document::Parser provides generic methods that should be overriden by specific parsers. This class should not be used directly, but rather be overridden by specific parsers. Parsers that extend the Document::Parser class should at least override the parse method.

METHODS

$docparser = Biblio::Document::Parser->new()

The new() method creates a new parser instance.

@references = $parser->parse($lines, %options)

The parse() method takes either a content string or an IO::Handle, and returns an array of reference strings.

AUTHOR

Mike Jewell <moj@ecs.soton.ac.uk>