aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/man_html.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2014-09-27 09:05:57 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2014-09-27 09:05:57 +0000
commit6f603eaa29c0c620155a4676d14e514aae64f7fc (patch)
treec6b6e2600247d29205039b3eae8679dfca1f5ae2 /man_html.c
parentdcd90e7955626a38ed974eeba3b599fb534e7b62 (diff)
downloadmandoc-6f603eaa29c0c620155a4676d14e514aae64f7fc.tar.gz
mandoc-6f603eaa29c0c620155a4676d14e514aae64f7fc.tar.zst
mandoc-6f603eaa29c0c620155a4676d14e514aae64f7fc.zip
Kick out "summary" attribute, which isn't HTML5.
Diffstat (limited to 'man_html.c')
-rw-r--r--man_html.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/man_html.c b/man_html.c
index 1ab62990..8142ad85 100644
--- a/man_html.c
+++ b/man_html.c
@@ -1,4 +1,4 @@
-/* $Id: man_html.c,v 1.98 2014/09/27 09:02:19 kristaps Exp $ */
+/* $Id: man_html.c,v 1.99 2014/09/27 09:05:57 kristaps Exp $ */
/*
* Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2013, 2014 Ingo Schwarze <schwarze@openbsd.org>
@@ -307,9 +307,8 @@ man_root_pre(MAN_ARGS)
assert(man->msec);
mandoc_asprintf(&title, "%s(%s)", man->title, man->msec);
- PAIR_SUMMARY_INIT(&tag[0], "Document Header");
- PAIR_CLASS_INIT(&tag[1], "head");
- t = print_otag(h, TAG_TABLE, 2, tag);
+ PAIR_CLASS_INIT(&tag[0], "head");
+ t = print_otag(h, TAG_TABLE, 1, tag);
PAIR_INIT(&tag[0], ATTR_WIDTH, "30%");
print_otag(h, TAG_COL, 1, tag);
print_otag(h, TAG_COL, 1, tag);
@@ -345,9 +344,8 @@ man_root_post(MAN_ARGS)
struct htmlpair tag[2];
struct tag *t, *tt;
- PAIR_SUMMARY_INIT(&tag[0], "Document Footer");
- PAIR_CLASS_INIT(&tag[1], "foot");
- t = print_otag(h, TAG_TABLE, 2, tag);
+ PAIR_CLASS_INIT(&tag[0], "foot");
+ t = print_otag(h, TAG_TABLE, 1, tag);
PAIR_INIT(&tag[0], ATTR_WIDTH, "50%");
print_otag(h, TAG_COL, 1, tag);
print_otag(h, TAG_COL, 1, tag);