summaryrefslogtreecommitdiffstats
path: root/mdoc_html.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2014-09-27 09:26:01 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2014-09-27 09:26:01 +0000
commitb4b566f2e27b30860a34ca722167ff748d29060d (patch)
tree823bbd3030622f85d4f9ff3522e047882d93c262 /mdoc_html.c
parent9a0c4c4571a9055eab5a14fcee755c5dde12f643 (diff)
downloadmandoc-b4b566f2e27b30860a34ca722167ff748d29060d.tar.gz
Remove last hard-coded width attribute.
Diffstat (limited to 'mdoc_html.c')
-rw-r--r--mdoc_html.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/mdoc_html.c b/mdoc_html.c
index 59eda03b..87170dbe 100644
--- a/mdoc_html.c
+++ b/mdoc_html.c
@@ -489,9 +489,6 @@ mdoc_root_post(MDOC_ARGS)
PAIR_CLASS_INIT(&tag, "foot");
t = print_otag(h, TAG_TABLE, 1, &tag);
- PAIR_INIT(&tag, ATTR_WIDTH, "50%");
- print_otag(h, TAG_COL, 1, &tag);
- print_otag(h, TAG_COL, 1, &tag);
print_otag(h, TAG_TBODY, 0, NULL);
@@ -529,10 +526,6 @@ mdoc_root_pre(MDOC_ARGS)
PAIR_CLASS_INIT(&tag, "head");
t = print_otag(h, TAG_TABLE, 1, &tag);
- PAIR_INIT(&tag, ATTR_WIDTH, "30%");
- print_otag(h, TAG_COL, 1, &tag);
- print_otag(h, TAG_COL, 1, &tag);
- print_otag(h, TAG_COL, 1, &tag);
print_otag(h, TAG_TBODY, 0, NULL);