diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2014-09-27 09:05:57 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2014-09-27 09:05:57 +0000 |
commit | bd0e1539201fad6b2a3f492cabb69c5be5326b02 (patch) | |
tree | 8c593798613e6802382817e981d96e1f0a22ba10 /mdoc_html.c | |
parent | fe1e8ba3e2a185f91392bf28fc3076b5150d914b (diff) | |
download | mandoc-bd0e1539201fad6b2a3f492cabb69c5be5326b02.tar.gz |
Kick out "summary" attribute, which isn't HTML5.
Diffstat (limited to 'mdoc_html.c')
-rw-r--r-- | mdoc_html.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/mdoc_html.c b/mdoc_html.c index ff2b140e..cbbbd3a2 100644 --- a/mdoc_html.c +++ b/mdoc_html.c @@ -487,9 +487,8 @@ mdoc_root_post(MDOC_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); @@ -529,9 +528,8 @@ mdoc_root_pre(MDOC_ARGS) mandoc_asprintf(&title, "%s(%s)", meta->title, meta->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); |