output_body(): For <address> elements, just skip, since they're
always part of the page trailer.
This commit is contained in:
parent
bb3b0028ba
commit
8e2c9457a2
|
@ -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")
|
||||
|
|
Loading…
Reference in New Issue