[l2h] How to generate a table using latex2html without horizontal lines between rows?

Shigeharu TAKENO shige at iee.niit.ac.jp
Sat Feb 11 00:22:53 CET 2012


shige 02/11 2012
----------------

"Nasser M. Abbasi" <nma at 12000.org> wrote:
>> in versions/html4_0.pl (or versions/html3_2.pl), and modify
>>
>>    elsif ( $frames || $rules ) { $border = " BORDER=\"1\""; };
>>
>> to
>>
>>    if ( $TBLADDOPT ) { $border = " $TBLADDOPT"; }
>>    elsif ( $frames || $rules ) { $border = " BORDER=\"1\""; }
>>
>> in the subroutine process_tabular in the same file.
>
>I only see the line, which reads
>
>   if ( $frames || $rules ) { $border = " BORDER=\"1\""; };
>
>note, it is 'if' and not 'elsif'

I made a mistake. You are right. Please modify

    if ( $frames || $rules ) { $border = " BORDER=\"1\""; };

to

    if ( $TBLADDOPT ) { $border = " $TBLADDOPT"; }
    elsif ( $frames || $rules ) { $border = " BORDER=\"1\""; }

in the subroutine process_tabular in the same file.

+========================================================+
 Shigeharu TAKENO     NIigata Institute of Technology
                       kashiwazaki,Niigata 945-1195 JAPAN
 shige at iee.niit.ac.jp   TEL(&FAX): +81-257-22-8161
+========================================================+


More information about the latex2html mailing list