From b73bc31e398ff07b5a1661f3f0a418989717fd98 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Sun, 12 Apr 1998 02:13:14 +0000 Subject: [PATCH] Removed partially broken {verbatim} support. --- Doc/perl/python.perl | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/Doc/perl/python.perl b/Doc/perl/python.perl index d37aab115f0..e45712b57f6 100644 --- a/Doc/perl/python.perl +++ b/Doc/perl/python.perl @@ -444,31 +444,6 @@ sub make_str_index_entry{ "$aname$str"; } -# Changed from the stock version to indent {verbatim} sections, -# and make them smaller, to better match the LaTeX version: - -# (Used with LaTeX2HTML 96.1*) -sub replace_verbatim { - # Modifies $_ - my($prefix,$suffix) = ("\n

\n", "
"); - s/$verbatim_mark(verbatim)(\d+)/$prefix$verbatim{$2}$suffix/go; - s/$verbatim_mark(rawhtml)(\d+)/$verbatim{$2}/ego; # Raw HTML -} - -# (Used with LaTeX2HTML 98.1) -# The HTML this produces is bad; the
 is on the outside of the 
, -# but I haven't found a workaround yet. -sub replace_verbatim_hook{ - # Modifies $_ - my($prefix,$suffix) = ("\n

", "
"); - s/$math_verbatim_rx/&put_comment("MATH: ".$verbatim{$1})/eg; - s/$verbatim_mark(\w*[vV]erbatim\*?)(\d+)\#/$prefix$verbatim{$2}$suffix/go; - # Raw HTML, but replacements may have protected characters - s/$verbatim_mark(rawhtml)(\d+)#/&unprotect_raw_html($verbatim{$2})/eg; - s/$verbatim_mark$keepcomments(\d+)#/$verbatim{$2}/ego; # Raw TeX - s/$unfinished_mark$keepcomments(\d+)#/$verbatim{$2}/ego; # Raw TeX -} - sub do_env_cfuncdesc{ local($_) = @_; my($return_type,$function_name,$arg_list,$idx) = ('', '', '', '');