=================================================================== RCS file: /cvs/mandoc/man_html.c,v retrieving revision 1.51 retrieving revision 1.53 diff -u -p -r1.51 -r1.53 --- mandoc/man_html.c 2010/12/06 15:31:44 1.51 +++ mandoc/man_html.c 2010/12/15 17:19:41 1.53 @@ -1,4 +1,4 @@ -/* $Id: man_html.c,v 1.51 2010/12/06 15:31:44 kristaps Exp $ */ +/* $Id: man_html.c,v 1.53 2010/12/15 17:19:41 kristaps Exp $ */ /* * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons * @@ -102,11 +102,9 @@ static const struct htmlman mans[MAN_MAX] = { { man_alt_pre, NULL }, /* IR */ { man_alt_pre, NULL }, /* RI */ { NULL, NULL }, /* na */ - { NULL, NULL }, /* i */ { man_br_pre, NULL }, /* sp */ { man_literal_pre, NULL }, /* nf */ { man_literal_pre, NULL }, /* fi */ - { NULL, NULL }, /* r */ { NULL, NULL }, /* RE */ { man_RS_pre, NULL }, /* RS */ { man_ign_pre, NULL }, /* DT */ @@ -143,20 +141,13 @@ static void print_man(MAN_ARGS) { struct tag *t; - struct htmlpair tag; t = print_otag(h, TAG_HEAD, 0, NULL); - print_man_head(m, n, mh, h); print_tagq(h, t); - t = print_otag(h, TAG_BODY, 0, NULL); - tag.key = ATTR_CLASS; - tag.val = "body"; - print_otag(h, TAG_DIV, 1, &tag); - + t = print_otag(h, TAG_BODY, 0, NULL); print_man_nodelist(m, n, mh, h); - print_tagq(h, t); }