NAME
Data::Dumper::HTML - Perl extension to dump data in HTML safe format with syntax highlighting
SYNOPSIS
CGI::header();
qq{<div style="font-family: monospace">\n}
;
dumper_html(
@whatever
);
"\n<br /><br />\n"
;
# or with the OO (but Data::Dumper objects act strange so I usually recommend the function route)
my
$dd
= Data::Dumper->new(\
@whatever
);
$dd
->DumpHTML();
"\n</div>\n"
;
DESCRIPTION
Adds DumpHTML() and dump_html() method to Data::Dumper objects
And has exportable DumperHTML() and dumper_html() functions
There are "all lowercase/underscore" versions since that is the style I prefer. I also included the "smooshed together mixed case" to correspond to Data::Dumper's Dumper() function and Dump() method.
It will be Perl syntax highlighted if possible, see Text::inHTML for more details.
SEE ALSO
AUTHOR
Daniel Muey, http://drmuey.com/cpan_contact.pl
COPYRIGHT AND LICENSE
Copyright (C) 2006 by Daniel Muey
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.6 or, at your option, any later version of Perl 5 you may have available.