From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

use strict;
use Moose;
has 'src' => (
isa => 'Str',
traits => [qw(XPathValue)],
xpath_query => './@src',
);
has 'alt' => (
isa => 'Str',
traits => [qw(XPathValue)],
xpath_query => './@alt',
);
has 'title' => (
isa => 'Str',
traits => [qw(XPathValue)],
xpath_query => './@title',
);
no Moose;
__PACKAGE__->meta->make_immutable();
1;