Add built local::lib
[catagits/Gitalist.git] / local-lib5 / lib / perl5 / XML / RSS / Private / Output / Roles / ImageDims.pm
1 package XML::RSS::Private::Output::Roles::ImageDims;
2
3 use strict;
4 use warnings;
5
6 sub _out_image_dims {
7     my $self = shift;
8
9     # link, image width, image height and description
10     return $self->_output_multiple_tags(
11         {ext => "image", 'defined' => 1},
12         [qw(width height description)],
13     );
14 }
15
16 1;
17