HTML-TableBracket
view release on metacpan or search on metacpan
TableBracket.pm view on Meta::CPAN
$temp->match(Dick => 20, Curly => 21);
$temp->match(Moe => 10, Tom => 20);
# For matches that don't have a score, such as chess matches,
# Use the round method. (WINNER,LOSER)
$temp->round("Tom","Curly");
# Display the table in HTML format
print $temp->as_html;
# Display the table in XHTML format
print $temp->as_xhtml;
# Display the table in .dot format (name of graph as argument)
print $temp->as_directed_graph_source("Tournament");
# Display the table as a directed graph (name of graph as argument)
print $temp->as_directed_graph("Tournament")->as_png;
=head1 DESCRIPTION
( run in 0.473 second using v1.01-cache-2.11-cpan-49f99fa48dc )