]> granicus.if.org Git - python/commitdiff
output_body(): For <address> elements, just skip, since they're
authorFred Drake <fdrake@acm.org>
Mon, 11 Jan 1999 22:30:34 +0000 (22:30 +0000)
committerFred Drake <fdrake@acm.org>
Mon, 11 Jan 1999 22:30:34 +0000 (22:30 +0000)
always part of the page trailer.

Doc/tools/html2texi.pl

index cf3595f1f8600e8eca9019a77e2cec311544441e..740a7e401f703aee6b7d4476a2883abfedc7c025 100755 (executable)
@@ -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")