Help for this page

Select Code to Download


  1. or download this
    use MIME::Lite::TT::HTML;
    
    ...
        },
        TmplParams => $HoH,
    );
    
  2. or download this
    [% FOREACH record IN item_hoh.values.nsort('index') %]
      <tr>
    ...
        <td>[% record.col2 %]</td>
      </tr>
    [% END %]
    
  3. or download this
        ...
        $tt->process( $template->{html}, $tmpl_params, \$html ) or croak $
    +tt->error;
        print STDERR $html;    # <---
        ...
    
  4. or download this
      <tr>
      <td>42</td>
    ...
        <td>Col 1</td>
        <td>Col 2</td>
      </tr>