Help for this page

Select Code to Download


  1. or download this
    sub body {
      my ($tab,$code,$opt) = @_;
    ...
      &$code;
      line($tab,"</$tag>");
    }
    
  2. or download this
    body( sub {
      header( sub {
    ...
        ... some footer code for the body ...
      });
    });
    
  3. or download this
    sub body {
      my ($tab,$opt) = @_;
    ...
      footer($tab + 1, @{$opt->{footer}}) if $opt->{footter};
      line($tab,"</$tag>");
    }
    
  4. or download this
    body(
      header => sub {
    ...
        );
      },
    );