From ea07f2751aa5857882a4dbeaa396be3768e9a37f Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Wed, 28 Apr 1999 17:11:21 +0000 Subject: setup_column_alignments(): Adding valign=baseline to the tag makes the alignment work on Navigator as well as IE. Uglier HTML, but it looks right. --- Doc/perl/python.perl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Doc/perl/python.perl b/Doc/perl/python.perl index 36f0f15..2b6fa18 100644 --- a/Doc/perl/python.perl +++ b/Doc/perl/python.perl @@ -808,7 +808,8 @@ sub setup_column_alignments{ local($_) = @_; my($a1,$a2,$a3,$a4) = split(/[|]/,$_); my($th1,$th2,$th3,$th4) = ('', '', '', ''); - $col_aligns[0] = (($a1 eq 'c') ? '' : ''); + $col_aligns[0] = (($a1 eq 'c') ? '' + : ''); $col_aligns[1] = (($a2 eq 'c') ? '' : ''); $col_aligns[2] = (($a3 eq 'c') ? '' : ''); $col_aligns[3] = (($a4 eq 'c') ? '' : ''); -- cgit v0.12