Docbook-Table

 view release on metacpan or  search on metacpan

lib/Docbook/Table.pm  view on Meta::CPAN

}
$t = Docbook::Table->new();
isa_ok($t, 'Docbook::Table');

=end testing

=cut

sub new {
    my $self = {};
    $self->{calling_package} = (caller)[0];
    bless $self;
    return $self;
}

=head2 Specifying the title

Docbook tables must have a title.  You can set the title by passing a
string to the title() method.

    $t->title("This is the title");



( run in 1.668 second using v1.01-cache-2.11-cpan-1e74a51a04c )