summaryrefslogtreecommitdiffstats
path: root/man_html.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2014-09-27 09:13:39 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2014-09-27 09:13:39 +0000
commit379b6790c4ec053fdda28a8938bc03abc807ebe5 (patch)
tree248dc897582fe48da2fd8810aff552a36560beec /man_html.c
parentbd0e1539201fad6b2a3f492cabb69c5be5326b02 (diff)
downloadmandoc-379b6790c4ec053fdda28a8938bc03abc807ebe5.tar.gz
Continue in HTML5-ing by kicking out some hard-coded alignments.
Diffstat (limited to 'man_html.c')
-rw-r--r--man_html.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/man_html.c b/man_html.c
index 0fa24a58..6c43c864 100644
--- a/man_html.c
+++ b/man_html.c
@@ -331,8 +331,7 @@ man_root_pre(MAN_ARGS)
print_stagq(h, tt);
PAIR_CLASS_INIT(&tag[0], "head-rtitle");
- PAIR_INIT(&tag[1], ATTR_ALIGN, "right");
- print_otag(h, TAG_TD, 2, tag);
+ print_otag(h, TAG_TD, 1, tag);
print_text(h, title);
print_tagq(h, t);
free(title);
@@ -360,8 +359,7 @@ man_root_post(MAN_ARGS)
print_stagq(h, tt);
PAIR_CLASS_INIT(&tag[0], "foot-os");
- PAIR_INIT(&tag[1], ATTR_ALIGN, "right");
- print_otag(h, TAG_TD, 2, tag);
+ print_otag(h, TAG_TD, 1, tag);
if (man->source)
print_text(h, man->source);