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

use utf8;
use Moo;
use Importer 'NewsExtractor::TextUtil' => qw( normalize_whitespace );
sub journalist {
my ($self) = @_;
my $text = $self->tx->result->dom->find("div.single-post-meta a")->map('text')->join(" ") // '';
return normalize_whitespace("". $text);
}
1;