| FormatNroff documentation | Contained in the FormatNroff distribution. |
HTML::FormatNroffSub - Test package for testing subclassing of HTML::FormatNroff
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);
This is simply a test that HTML::FormatNroff may be subclassed and will still work.
Copyright (c) 1997 Frederick Hirsch. All rights reserved.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
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;