summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>1999-01-11 22:30:34 (GMT)
committerFred Drake <fdrake@acm.org>1999-01-11 22:30:34 (GMT)
commit8e2c9457a255a2be64f7857638ed60bb8e2a724f (patch)
tree47ae5c780110de9da70ca67516eecf6579c56585
parentbb3b0028baf37fccbbca743698ade561d7a84fd3 (diff)
downloadcpython-8e2c9457a255a2be64f7857638ed60bb8e2a724f.zip
cpython-8e2c9457a255a2be64f7857638ed60bb8e2a724f.tar.gz
cpython-8e2c9457a255a2be64f7857638ed60bb8e2a724f.tar.bz2
output_body(): For <address> elements, just skip, since they're
always part of the page trailer.
-rwxr-xr-xDoc/tools/html2texi.pl4
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/tools/html2texi.pl b/Doc/tools/html2texi.pl
index cf3595f..740a7e4 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")