diff options
author | Fred Drake <fdrake@acm.org> | 1999-02-09 16:03:31 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-02-09 16:03:31 (GMT) |
commit | 2d1f81ea220bd572899afd70f62f59bc732f1db5 (patch) | |
tree | 71b337aa53953b5c7c015b7494339408dc8ff573 /Doc | |
parent | 1a4c5392b5a721a155fe939c4e42e48fb5db9d79 (diff) | |
download | cpython-2d1f81ea220bd572899afd70f62f59bc732f1db5.zip cpython-2d1f81ea220bd572899afd70f62f59bc732f1db5.tar.gz cpython-2d1f81ea220bd572899afd70f62f59bc732f1db5.tar.bz2 |
do_cmd_maketitle(): Small nit in creating the "title page".
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/perl/python.perl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/perl/python.perl b/Doc/perl/python.perl index 883bd3e..48cf0dd 100644 --- a/Doc/perl/python.perl +++ b/Doc/perl/python.perl @@ -863,10 +863,11 @@ sub do_cmd_maketitle { if ($t_author) { if ($t_authorURL) { my $href = translate_commands($t_authorURL); - $href = make_named_href('author', $href, "<strong>${t_author}</strong>"); + $href = make_named_href('author', $href, + "<b><font size='+2'>$t_author</font></b>"); $the_title .= "\n<p>$href</p>"; } else { - $the_title .= "\n<p><strong>$t_author</strong></p>"; + $the_title .= ("\n<p><b><font size='+2'>$t_author</font></b></p>"); } } else { write_warnings("\nThere is no author for this document."); } if ($t_institute) { |