diff options
author | 2017-01-21 02:28:42 +0000 | |
---|---|---|
committer | 2017-01-21 02:28:42 +0000 | |
commit | f8601e8eafb106b60fa7aea3bd06e68ee384abc2 (patch) | |
tree | cacffa4cafe44e1ac02669c94b2fb803b9bb5a4a | |
parent | Avoid writing constant style attributes over and over again. (diff) | |
download | wireguard-openbsd-f8601e8eafb106b60fa7aea3bd06e68ee384abc2.tar.xz wireguard-openbsd-f8601e8eafb106b60fa7aea3bd06e68ee384abc2.zip |
slightly simplify header and footer styles
-rw-r--r-- | usr.bin/mandoc/html.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/usr.bin/mandoc/html.c b/usr.bin/mandoc/html.c index a89aff0ef6b..c4694f6a5cd 100644 --- a/usr.bin/mandoc/html.c +++ b/usr.bin/mandoc/html.c @@ -1,4 +1,4 @@ -/* $OpenBSD: html.c,v 1.69 2017/01/19 16:56:53 schwarze Exp $ */ +/* $OpenBSD: html.c,v 1.70 2017/01/21 02:28:42 schwarze Exp $ */ /* * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2011-2015, 2017 Ingo Schwarze <schwarze@openbsd.org> @@ -175,10 +175,6 @@ print_gen_head(struct html *h) print_endline(h); print_text(h, "td.head-vol { text-align: center; }"); print_endline(h); - print_text(h, "table.foot td { width: 50%; }"); - print_endline(h); - print_text(h, "table.head td { width: 33%; }"); - print_endline(h); print_text(h, "div.Pp { margin: 1ex 0ex; }"); print_tagq(h, t); |