1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
package Razor2::Preproc::deHTML_comment;
sub new {
my $class = shift;
return bless {}, $class;
}
sub isit {
my ($self, $text) = @_;
my $isit = 0;
my ($hdr, $body) = split /\n\r*\n/, $$text, 2;
return 0 unless $body;
$isit = $body =~ /(?:<HTML>|<BODY|<FONT|<A HREF)/ism;
return $isit if $isit;
$isit = $hdr =~ m"^Content-Type: text/html"ism;
return $isit;
}
sub doit {
my ($self, $text) = @_;
my ($hdr, $body) = split /\n\r*\n/, $$text, 2;
$body =~ s/<!--.*?-->//gs;
$$text = "$hdr\n\n$body";
}
1;
|