=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/man_html.c,v retrieving revision 1.81 retrieving revision 1.82 diff -c -r1.81 -r1.82 *** src/usr.bin/mandoc/man_html.c 2017/01/20 23:50:59 1.81 --- src/usr.bin/mandoc/man_html.c 2017/01/21 01:20:29 1.82 *************** *** 1,4 **** ! /* $OpenBSD: man_html.c,v 1.81 2017/01/20 23:50:59 schwarze Exp $ */ /* * Copyright (c) 2008-2012, 2014 Kristaps Dzonsons * Copyright (c) 2013, 2014, 2015, 2017 Ingo Schwarze --- 1,4 ---- ! /* $OpenBSD: man_html.c,v 1.82 2017/01/21 01:20:29 schwarze Exp $ */ /* * Copyright (c) 2008-2012, 2014 Kristaps Dzonsons * Copyright (c) 2013, 2014, 2015, 2017 Ingo Schwarze *************** *** 453,468 **** const struct roff_node *nn; if (n->type == ROFFT_BODY) { ! print_otag(h, TAG_DD, ""); return 1; } else if (n->type != ROFFT_HEAD) { ! print_otag(h, TAG_DL, ""); return 1; } /* FIXME: width specification. */ ! print_otag(h, TAG_DT, ""); /* For IP, only print the first header element. */ --- 453,468 ---- const struct roff_node *nn; if (n->type == ROFFT_BODY) { ! print_otag(h, TAG_DD, "c", "It-tag"); return 1; } else if (n->type != ROFFT_HEAD) { ! print_otag(h, TAG_DL, "c", "Bl-tag"); return 1; } /* FIXME: width specification. */ ! print_otag(h, TAG_DT, "c", "It-tag"); /* For IP, only print the first header element. */