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

use strict;
use warnings;
use lib qw( ./lib ../lib );
use Cwd;
use CSS::Inliner;
my $url = shift || 'http://www.cpan.org/index.html';
my $inliner = CSS::Inliner->new();
$inliner->fetch_file({url => $url});
my $inlined = $inliner->inlinify();
print $inlined;
warn "================ ERRORS ===============";
foreach my $warning (@{$inliner->content_warnings}) {
warn $warning;
}