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

"Nasser M. Abbasi" <n...@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
 sh...@iee.niit.ac.jp   TEL(&FAX): +81-257-22-8161
+========================================================+
_______________________________________________
latex2html mailing list
latex2html@tug.org
http://tug.org/mailman/listinfo/latex2html

Reply via email to