Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
351960de
Commit
351960de
authored
Oct 26, 2000
by
Fred Drake
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Normalize the HTML generated for table headers.
parent
6c7fc77d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
7 deletions
+10
-7
Doc/perl/python.perl
Doc/perl/python.perl
+10
-7
No files found.
Doc/perl/python.perl
View file @
351960de
...
...
@@ -1083,13 +1083,14 @@ sub do_env_tableii{
my
$a2
=
$col_aligns
[
1
];
s/\\lineii</\\lineii[$a1|$a2]</g
;
return
'
<table border align="center" style="border-collapse: collapse">
'
.
"
\n
<thead>
"
.
"
\n
<tr class=
\"
tableheader
\"
>
"
.
"
\n
<thead>
"
.
"
\n
<tr class=
\"
tableheader
\"
>
"
.
"
\n
$th1
<b>
$h1
</b>
\
</th>
"
.
"
\n
$th2
<b>
$h2
</b>
\
</th>
"
.
"
\n
</tr>
"
.
"
\n
</thead>
"
.
"
\n
<tbody valign='baseline'>
"
.
$_
.
$_
.
"
\n
</tbody>
"
.
"
\n
</table>
";
}
...
...
@@ -1130,11 +1131,12 @@ sub do_env_tableiii{
my
$a3
=
$col_aligns
[
2
];
s/\\lineiii</\\lineiii[$a1|$a2|$a3]</g
;
return
'
<table border align="center" style="border-collapse: collapse">
'
.
"
\n
<thead>
"
.
"
\n
<tr
$TABLE_HEADER_BGCOLOR
>
"
.
"
\n
<thead>
"
.
"
\n
<tr class=
\"
tableheader
\"
>
"
.
"
\n
$th1
<b>
$h1
</b>
\
</th>
"
.
"
\n
$th2
<b>
$h2
</b>
\
</th>
"
.
"
\n
$th3
<b>
$h3
</b>
\
</th>
"
.
"
\n
</tr>
"
.
"
\n
</thead>
"
.
"
\n
<tbody valign='baseline'>
"
.
$_
...
...
@@ -1182,12 +1184,13 @@ sub do_env_tableiv{
my
$a4
=
$col_aligns
[
3
];
s/\\lineiv</\\lineiv[$a1|$a2|$a3|$a4]</g
;
return
'
<table border align="center" style="border-collapse: collapse">
'
.
"
\n
<thead>
"
.
"
\n
<tr
$TABLE_HEADER_BGCOLOR
>
"
.
"
\n
<thead>
"
.
"
\n
<tr class=
\"
tableheader
\"
>
"
.
"
\n
$th1
<b>
$h1
</b>
\
</th>
"
.
"
\n
$th2
<b>
$h2
</b>
\
</th>
"
.
"
\n
$th3
<b>
$h3
</b>
\
</th>
"
.
"
\n
$th4
<b>
$h4
</b>
\
</th>
"
.
"
\n
</tr>
"
.
"
\n
</thead>
"
.
"
\n
<tbody valign='baseline'>
"
.
$_
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment