From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
123456789101112131415161718 package NewsExtractor::SiteSpecificExtractor::www_thestandnews_com;use utf8;use Moo;extends 'NewsExtractor::JSONLDExtractor';use NewsExtractor::GenericExtractor;sub site_name { return '立場新聞'}sub content_text { my ($self) = @_; return $self->NewsExtractor::GenericExtractor::_build_content_text();}1;
package
NewsExtractor::SiteSpecificExtractor::www_thestandnews_com;
use
utf8;
Moo;
extends
'NewsExtractor::JSONLDExtractor'
;
NewsExtractor::GenericExtractor;
sub
site_name {
return
'立場新聞'
}
content_text {
my
(
$self
) =
@_
->NewsExtractor::GenericExtractor::_build_content_text();
1;