From: Fred Drake Date: Mon, 11 Jan 1999 22:30:34 +0000 (+0000) Subject: output_body(): For
elements, just skip, since they're X-Git-Tag: v1.5.2b2~382 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8e2c9457a255a2be64f7857638ed60bb8e2a724f;p=python output_body(): For
elements, just skip, since they're always part of the page trailer. --- diff --git a/Doc/tools/html2texi.pl b/Doc/tools/html2texi.pl index cf3595f1f8..740a7e401f 100755 --- a/Doc/tools/html2texi.pl +++ b/Doc/tools/html2texi.pl @@ -796,6 +796,10 @@ sub output_body ( $$$ ) warn "Can't deal with internal HREF anchors yet"; } } } + elsif ($tag eq "address") + { # this is part of the page footer, ignore + return 0; + } elsif ($tag eq "br") { print TEXI "\@\n"; } elsif ($tag eq "body")