summaryrefslogtreecommitdiffstats
path: root/Doc/myformat.perl
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>1997-12-28 03:41:07 (GMT)
committerFred Drake <fdrake@acm.org>1997-12-28 03:41:07 (GMT)
commit0ee358529e7bbce8a2efdba2dc96a027daaf60f2 (patch)
tree819aa54b748b7ed6ee2a3964d115c90569e71a35 /Doc/myformat.perl
parent4d9d3f18c23f631bb11309f3376796d6051c48ee (diff)
downloadcpython-0ee358529e7bbce8a2efdba2dc96a027daaf60f2.zip
cpython-0ee358529e7bbce8a2efdba2dc96a027daaf60f2.tar.gz
cpython-0ee358529e7bbce8a2efdba2dc96a027daaf60f2.tar.bz2
do_env_tableii(), do_env_tableiii(): Align the table in the center, just
like LaTeX does. There's no need to diverge on this.
Diffstat (limited to 'Doc/myformat.perl')
-rw-r--r--Doc/myformat.perl4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/myformat.perl b/Doc/myformat.perl
index 9ec56d2..244b793 100644
--- a/Doc/myformat.perl
+++ b/Doc/myformat.perl
@@ -334,7 +334,7 @@ sub do_env_tableii{
$h2 = $8;
}
$globals{"lineifont"} = $font;
- "<table border>\n <tr><th>$h1</th>\n <th>$h2</th>$'\n"
+ "<table border align=center>\n <tr><th>$h1</th>\n <th>$h2</th>$'\n"
. "</table>";
}
@@ -365,7 +365,7 @@ sub do_env_tableiii{
$h3 = $10;
}
$globals{"lineifont"} = $font;
- "<table border>\n <tr><th>$h1</th>\n <th>$h2</th>"
+ "<table border align=center>\n <tr><th>$h1</th>\n <th>$h2</th>"
. "\n <th>$h3</th>$'\n"
. "</table>";
}