HTML::FormatText - Format HTML as text |
HTML::FormatText - Format HTML as text
require HTML::FormatText; $html = parse_htmlfile("test.html"); $formatter = HTML::FormatText->new(leftmargin => 0, rightmargin => 50); print $formatter->format($html);
The HTML::FormatText is a formatter that outputs plain latin1 text. All character attributes (bold/italic/underline) are ignored. Formatting of HTML tables and forms is not implemented.
You might specify the following parameters when constructing the formatter:
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::FormatText - Format HTML as text |