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.