diff options
Diffstat (limited to 'Doc/perl/python.perl')
-rw-r--r-- | Doc/perl/python.perl | 3 |
1 files changed, 2 insertions, 1 deletions
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) = ('<th>', '<th>', '<th>', '<th>'); - $col_aligns[0] = (($a1 eq 'c') ? '<td align=center>' : '<td>'); + $col_aligns[0] = (($a1 eq 'c') ? '<td align=center valign=baseline>' + : '<td valign=baseline>'); $col_aligns[1] = (($a2 eq 'c') ? '<td align=center>' : '<td>'); $col_aligns[2] = (($a3 eq 'c') ? '<td align=center>' : '<td>'); $col_aligns[3] = (($a4 eq 'c') ? '<td align=center>' : '<td>'); |