The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Biblio::DocParser - document parsing framework

DESCRIPTION

Biblio::DocParser 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 DocParser class should at least override the parse method.

METHODS

$docparser = Biblio::DocParser->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>