HTML::FormatNroffSub - Test package for testing subclassing of HTML::FormatNroff


FormatNroff documentation Contained in the FormatNroff distribution.

Index


Code Index:

NAME

Top

HTML::FormatNroffSub - Test package for testing subclassing of HTML::FormatNroff

SYNOPSIS

Top

 require HTML::FormatNroffSub;
 use HTML::Parse;
 $html = parse_html("<P><TABLE><TR><TD>1</TD></TR></TABLE>");
 $formatter = new HTML::FormatNroffSub(name => 'test', 
                                       project => 'proj') ;
 print $formatter->format($html);

DESCRIPTION

Top

This is simply a test that HTML::FormatNroff may be subclassed and will still work.

COPYRIGHT

Top

AUTHOR

Top

Frederick Hirsch <f.hirsch@opengroup.org>


FormatNroff documentation Contained in the FormatNroff distribution.
package HTML::FormatNroffSub;

require 5.004;

require HTML::FormatNroff;

@ISA = qw(HTML::FormatNroff);

1;