| HTML-Display documentation | Contained in the HTML-Display distribution. |
HTML::Display::Dump - dump raw HTML to the console
my $browser = HTML::Display->new(
class => 'HTML::Display::Dump',
);
$browser->display("<html><body><h1>Hello world!</h1></body></html>");
Copyright (c) 2004-2007 Max Maischein <corion@cpan.org>
This module is released under the same terms as Perl itself.
| HTML-Display documentation | Contained in the HTML-Display distribution. |
package HTML::Display::Dump; use strict; use parent 'HTML::Display::Common'; use vars qw($VERSION); $VERSION='0.39';
sub display_html { print $_[1]; };
1;