HTML::Formatter - Base class for HTML formatters |
HTML::Formatter - Base class for HTML formatters
package HTML::FormatXX; require HTML::Formatter; @ISA=qw(HTML::Formatter);
HTML formatters are able to format a HTML syntax tree into various
printable formats. Different formatters produce output for different
output media. Common for all formatters are that they will return the
formatted output when the format()
method is called. Format()
takes a
HTML::Element as parameter.
the HTML::FormatText manpage, the HTML::FormatPS manpage, the HTML::Element manpage
Copyright (c) 1995-1998 Gisle Aas. All rights reserved.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Gisle Aas <aas@sn.no>
HTML::Formatter - Base class for HTML formatters |