From d7a5bca89bac404d466954dd23401e71bdc500b5 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Wed, 10 Nov 2004 08:07:00 +0000 Subject: more XHTML friendliness:
becomes well-formed --- Doc/perl/python.perl | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Doc/perl/python.perl b/Doc/perl/python.perl index 14ce958..b65128b 100644 --- a/Doc/perl/python.perl +++ b/Doc/perl/python.perl @@ -1895,7 +1895,7 @@ sub do_cmd_seemodule{ if ($text =~ /\.$/) { $period = ''; } - return ('
' + return ('
' . "\n
Module " . "$module:" . "\n
$text$period\n
" @@ -1918,7 +1918,7 @@ sub handle_rfclike_reference($$$){ my $url = get_rfc_url($rfcnum, $format); my $icon = get_link_icon($url); my $attrtitle = strip_html_markup($title); - return '
' + return '
' . "\n
$what $rfcnum, $title$icon" @@ -1942,13 +1942,13 @@ sub do_cmd_seetitle{ my $text = next_argument(); if ($url) { my $icon = get_link_icon($url); - return '
' + return '
' . "\n
$title$icon
" . "\n
$text
\n
" . $_; } - return '
' + return '
' . "\n
$title
" . "\n
$text
\n
" @@ -1961,7 +1961,7 @@ sub do_cmd_seelink{ my $linktext = next_argument(); my $text = next_argument(); my $icon = get_link_icon($url); - return '
' + return '
' . "\n
$linktext$icon
" . "\n
$text
\n
" @@ -1973,7 +1973,7 @@ sub do_cmd_seeurl{ my $url = next_argument(); my $text = next_argument(); my $icon = get_link_icon($url); - return '
' + return '
' . "\n
$url$icon
" . "\n
$text
\n
" -- cgit v0.12