Help for this page

Select Code to Download


  1. or download this
    sub cell {
      # $tab is a number.
    ...
      }
      line($tab,qq(</t$type>));
    }
    
  2. or download this
    sub row {
      # $tab is a number.
    ...
    
      line($tab,q(</tr>));
    }
    
  3. or download this
    sub table {
      # $tab is again a number.
    ...
    
      line($tab,q(</table>));
    }
    
  4. or download this
    sub list {
      # And again, $tab is a number.
    ...
      line($tab + 1,qq(<li>$_</li>)) for @{$list};
      line($tab,q(</ul>));
    }
    
  5. or download this
    sub col {
      my ($tab,$opt) = @_;
    ...
      my ($tab,$cols) = @_;
      col($tab,$_) for @{$cols};
    }
    
  6. or download this
    sub sline {
      my ($tab,$line) = @_;
    ...
    sub line {
      print sline(@_);
    }
    
  7. or download this
    package Base::HTML::Elements;
    use strict;
    ...
    }
    
    1;