File: MyStripScripts.pm

package info (click to toggle)
libhtml-stripscripts-perl 1.06-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 568 kB
  • sloc: perl: 1,006; makefile: 2
file content (20 lines) | stat: -rw-r--r-- 317 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package MyStripScripts;

use strict;
use warnings FATAL => 'all';

use HTML::StripScripts::Parser();
our @ISA = qw(HTML::StripScripts::Parser);


### Override declaration handling

sub input_declaration {
    my ($self,$text) = @_;

    ## Add code to parse and check declaration ###

    $self->output($text);
}

1;