Normalize the HTML generated for table headers.

This commit is contained in:
Fred Drake 2000-10-26 20:14:58 +00:00
parent 6c7fc77d22
commit 351960de94

View file

@ -1087,6 +1087,7 @@ sub do_env_tableii{
. "\n <tr class=\"tableheader\">" . "\n <tr class=\"tableheader\">"
. "\n $th1<b>$h1</b>\&nbsp;</th>" . "\n $th1<b>$h1</b>\&nbsp;</th>"
. "\n $th2<b>$h2</b>\&nbsp;</th>" . "\n $th2<b>$h2</b>\&nbsp;</th>"
. "\n </tr>"
. "\n </thead>" . "\n </thead>"
. "\n <tbody valign='baseline'>" . "\n <tbody valign='baseline'>"
. $_ . $_
@ -1131,10 +1132,11 @@ sub do_env_tableiii{
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>\&nbsp;</th>" . "\n $th1<b>$h1</b>\&nbsp;</th>"
. "\n $th2<b>$h2</b>\&nbsp;</th>" . "\n $th2<b>$h2</b>\&nbsp;</th>"
. "\n $th3<b>$h3</b>\&nbsp;</th>" . "\n $th3<b>$h3</b>\&nbsp;</th>"
. "\n </tr>"
. "\n </thead>" . "\n </thead>"
. "\n <tbody valign='baseline'>" . "\n <tbody valign='baseline'>"
. $_ . $_
@ -1183,11 +1185,12 @@ sub do_env_tableiv{
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>\&nbsp;</th>" . "\n $th1<b>$h1</b>\&nbsp;</th>"
. "\n $th2<b>$h2</b>\&nbsp;</th>" . "\n $th2<b>$h2</b>\&nbsp;</th>"
. "\n $th3<b>$h3</b>\&nbsp;</th>" . "\n $th3<b>$h3</b>\&nbsp;</th>"
. "\n $th4<b>$h4</b>\&nbsp;</th>" . "\n $th4<b>$h4</b>\&nbsp;</th>"
. "\n </tr>"
. "\n </thead>" . "\n </thead>"
. "\n <tbody valign='baseline'>" . "\n <tbody valign='baseline'>"
. $_ . $_