aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mdoc_html.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-09-25 12:43:05 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-09-25 12:43:05 +0000
commiteff101cc3392a94562dbdee2983067415b7c867a (patch)
tree8fb6aafc38a9663d465e7aec0de490e6d27266e8 /mdoc_html.c
parent9ac12ebbb5d0074ff2b72330511a385e44e2814e (diff)
downloadmandoc-eff101cc3392a94562dbdee2983067415b7c867a.tar.gz
mandoc-eff101cc3392a94562dbdee2983067415b7c867a.tar.zst
mandoc-eff101cc3392a94562dbdee2983067415b7c867a.zip
Changed -Thtml document header to be 10/80/10 with no wrapping of the middle.
Diffstat (limited to 'mdoc_html.c')
-rw-r--r--mdoc_html.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/mdoc_html.c b/mdoc_html.c
index 06fe17a5..e7183b57 100644
--- a/mdoc_html.c
+++ b/mdoc_html.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_html.c,v 1.10 2009/09/24 23:54:43 kristaps Exp $ */
+/* $Id: mdoc_html.c,v 1.11 2009/09/25 12:43:05 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -525,19 +525,19 @@ mdoc_root_pre(MDOC_ARGS)
tt = print_otag(h, TAG_TR, 0, NULL);
tag[0].key = ATTR_STYLE;
- tag[0].val = "width: 33%;";
+ tag[0].val = "width: 10%;";
print_otag(h, TAG_TD, 1, tag);
print_text(h, title);
print_stagq(h, tt);
tag[0].key = ATTR_STYLE;
- tag[0].val = "width: 33%; text-align: center;";
+ tag[0].val = "width: 80%; white-space: nowrap; text-align: center;";
print_otag(h, TAG_TD, 1, tag);
print_text(h, b);
print_stagq(h, tt);
tag[0].key = ATTR_STYLE;
- tag[0].val = "width: 33%; text-align: right;";
+ tag[0].val = "width: 10%; text-align: right;";
print_otag(h, TAG_TD, 1, tag);
print_text(h, title);
print_tagq(h, t);