mirror of
https://github.com/python/cpython.git
synced 2025-11-01 02:38:53 +00:00
Normalize the HTML generated for table headers.
This commit is contained in:
parent
6c7fc77d22
commit
351960de94
1 changed files with 10 additions and 7 deletions
|
|
@ -1083,13 +1083,14 @@ sub do_env_tableii{
|
||||||
my $a2 = $col_aligns[1];
|
my $a2 = $col_aligns[1];
|
||||||
s/\\lineii</\\lineii[$a1|$a2]</g;
|
s/\\lineii</\\lineii[$a1|$a2]</g;
|
||||||
return '<table border align="center" style="border-collapse: collapse">'
|
return '<table border align="center" style="border-collapse: collapse">'
|
||||||
. "\n <thead>"
|
. "\n <thead>"
|
||||||
. "\n <tr class=\"tableheader\">"
|
. "\n <tr class=\"tableheader\">"
|
||||||
. "\n $th1<b>$h1</b>\ </th>"
|
. "\n $th1<b>$h1</b>\ </th>"
|
||||||
. "\n $th2<b>$h2</b>\ </th>"
|
. "\n $th2<b>$h2</b>\ </th>"
|
||||||
|
. "\n </tr>"
|
||||||
. "\n </thead>"
|
. "\n </thead>"
|
||||||
. "\n <tbody valign='baseline'>"
|
. "\n <tbody valign='baseline'>"
|
||||||
. $_
|
. $_
|
||||||
. "\n </tbody>"
|
. "\n </tbody>"
|
||||||
. "\n</table>";
|
. "\n</table>";
|
||||||
}
|
}
|
||||||
|
|
@ -1130,11 +1131,12 @@ sub do_env_tableiii{
|
||||||
my $a3 = $col_aligns[2];
|
my $a3 = $col_aligns[2];
|
||||||
s/\\lineiii</\\lineiii[$a1|$a2|$a3]</g;
|
s/\\lineiii</\\lineiii[$a1|$a2|$a3]</g;
|
||||||
return '<table border align="center" style="border-collapse: collapse">'
|
return '<table border align="center" style="border-collapse: collapse">'
|
||||||
. "\n <thead>"
|
. "\n <thead>"
|
||||||
. "\n <tr$TABLE_HEADER_BGCOLOR>"
|
. "\n <tr class=\"tableheader\">"
|
||||||
. "\n $th1<b>$h1</b>\ </th>"
|
. "\n $th1<b>$h1</b>\ </th>"
|
||||||
. "\n $th2<b>$h2</b>\ </th>"
|
. "\n $th2<b>$h2</b>\ </th>"
|
||||||
. "\n $th3<b>$h3</b>\ </th>"
|
. "\n $th3<b>$h3</b>\ </th>"
|
||||||
|
. "\n </tr>"
|
||||||
. "\n </thead>"
|
. "\n </thead>"
|
||||||
. "\n <tbody valign='baseline'>"
|
. "\n <tbody valign='baseline'>"
|
||||||
. $_
|
. $_
|
||||||
|
|
@ -1182,12 +1184,13 @@ sub do_env_tableiv{
|
||||||
my $a4 = $col_aligns[3];
|
my $a4 = $col_aligns[3];
|
||||||
s/\\lineiv</\\lineiv[$a1|$a2|$a3|$a4]</g;
|
s/\\lineiv</\\lineiv[$a1|$a2|$a3|$a4]</g;
|
||||||
return '<table border align="center" style="border-collapse: collapse">'
|
return '<table border align="center" style="border-collapse: collapse">'
|
||||||
. "\n <thead>"
|
. "\n <thead>"
|
||||||
. "\n <tr$TABLE_HEADER_BGCOLOR>"
|
. "\n <tr class=\"tableheader\">"
|
||||||
. "\n $th1<b>$h1</b>\ </th>"
|
. "\n $th1<b>$h1</b>\ </th>"
|
||||||
. "\n $th2<b>$h2</b>\ </th>"
|
. "\n $th2<b>$h2</b>\ </th>"
|
||||||
. "\n $th3<b>$h3</b>\ </th>"
|
. "\n $th3<b>$h3</b>\ </th>"
|
||||||
. "\n $th4<b>$h4</b>\ </th>"
|
. "\n $th4<b>$h4</b>\ </th>"
|
||||||
|
. "\n </tr>"
|
||||||
. "\n </thead>"
|
. "\n </thead>"
|
||||||
. "\n <tbody valign='baseline'>"
|
. "\n <tbody valign='baseline'>"
|
||||||
. $_
|
. $_
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue