in reply to HTML:tableextract

Fire up your table extractor like this:

my $te = new HTML::TableExtract( keep_html => 1 );

This will retain all the html within each table cell (excluding embedded tables). With each of those HTML fragments you can extract the links using HTML::LinkExtor, HTML::LinkExtractor, or HTML::LinkExtorSimple.

Matt