]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/Hval.pm
wwwstream: allow undef noop callback
[public-inbox.git] / lib / PublicInbox / Hval.pm
index a455884f1c4b2e2787d10c587a29198f6e1ddb7c..652aef3daee55ab926e31262e0b722b1efbe568e 100644 (file)
@@ -9,12 +9,13 @@ use warnings;
 use Encode qw(find_encoding);
 use URI::Escape qw(uri_escape_utf8);
 use PublicInbox::MID qw/mid_clean/;
+use base qw/Exporter/;
+our @EXPORT_OK = qw/ascii_html/;
 
 # for user-generated content (UGC) which may have excessively long lines
 # and screw up rendering on some browsers.  This is the only CSS style
 # feature we use.
 use constant STYLE => '<style>pre{white-space:pre-wrap}</style>';
-use constant PRE => "<pre\nstyle=\"white-space:pre-wrap\">"; # legacy
 
 my $enc_ascii = find_encoding('us-ascii');
 
@@ -30,7 +31,7 @@ sub new {
 }
 
 sub new_msgid {
-       my ($class, $msgid, $no_compress) = @_;
+       my ($class, $msgid) = @_;
        $msgid = mid_clean($msgid);
        $class->new($msgid, $msgid);
 }