The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Data::HTML::TreeDumper - dumps perl data as HTML5 open/close tree

SYNOPSIS

    use Data::HTML::TreeDumper;
    my $td = Data::HTML::TreeDumper->new(
        ClassKey    => 'trdKey',
        ClassValue  => 'trdValue',
    );
    my $obj = someFunction();
    print $td->dump($obj);

DESCRIPTION

Data::HTML::TreeDumper dumps perl data as HTML5 open/close tree.

LICENSE

Copyright (C) TakeAsh.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

AUTHOR

TakeAsh