Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8e2c945

Browse files
committed
output_body(): For <address> elements, just skip, since they're
always part of the page trailer.
1 parent bb3b002 commit 8e2c945

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

Doc/tools/html2texi.pl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -796,6 +796,10 @@ ( $$$ )
796796
warn "Can't deal with internal HREF anchors yet"; }
797797
}
798798
}
799+
elsif ($tag eq "address")
800+
{ # this is part of the page footer, ignore
801+
return 0;
802+
}
799803
elsif ($tag eq "br")
800804
{ print TEXI "\@\n"; }
801805
elsif ($tag eq "body")

0 commit comments

Comments
 (0)