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

NAME

Catmandu::Fix::marc_xml - transform a Catmandu MARC record into MARCXML

SYNOPSIS

   # Transforms the 'record' key into a MARCXML string
   marc_xml('record')

DESCRIPTION

Convert MARC data into a MARCXML string

METHODS

marc_xml(PATH)

Transform the MARC record found at PATH to MARC XML.

INLINE

This Fix can be used inline in a Perl script:

    use Catmandu::Fix::marc_xml as => 'marc_xml';

    my $data = { record => [...] };

    $data = marc_xml($data);

SEE ALSO

Catmandu::Fix