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

#! perl
use strict;
our $VERSION = "1.00";
our $name = "Jesus and Mo";
our $pattern =
qr{ <img \s+
src="(?<url>https?://www.jesusandmo.net/wp-content/uploads/
(?<image>[^./]+\.\w+))" \s+
alt="(?<alt>.*?)" \s+
title="(?<title>.*?)" \s+
/>
}x;
# Important: Return the package name!
__PACKAGE__;