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

Simple::Html make simple html, without install Template

FUNCTION

make_html_table

my  $head = [ 'col_a', 'col_b', 'col_c' ];
my  $data =  [ [ 1, 2, 3 ], [ 4, 5, 6 ] ];
my  $html_table = make_html_table($head, $data);

make_html

my $html_body = '<div> ....</div>';
my $html = make_html($html_body, 
        # css => 'body { ... } ', 
        );