Skip Menu |

This queue is for tickets about the HTML-FormatText-WithLinks-AndTables CPAN distribution.

Report information
The Basics
Id: 85707
Status: resolved
Priority: 0/
Queue: HTML-FormatText-WithLinks-AndTables

People
Owner: Nobody in particular
Requestors: aminoff [...] nber.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: 0.04



Subject: support for th
Date: Wed, 29 May 2013 13:33:06 -0400
To: bug-html-formattext-withlinks-andtables [...] rt.cpan.org
From: Alex Aminoff <aminoff [...] nber.org>
Hi. Thanks for creating this perl module. We use it. However, our tables use th tags. We modified our version as below and it works great for us: 137c137 < my @cols = $tr->look_down(_tag=>qr/(td|th)/); # no support for <th>. sorry. --- Show quoted text
> my @cols = $tr->look_down(_tag=>'td'); # no support
for <th>. sorry. 170c170 < my @cols = $tr->look_down(_tag=>qr/(td|th)/); # no support for <th>. sorry. --- Show quoted text
> my @cols = $tr->look_down(_tag=>'td'); # no support
for <th>. sorry.
Fixed.