=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/mdoc_html.c,v retrieving revision 1.179 retrieving revision 1.180 diff -c -r1.179 -r1.180 *** src/usr.bin/mandoc/mdoc_html.c 2018/05/25 20:23:39 1.179 --- src/usr.bin/mandoc/mdoc_html.c 2018/05/29 01:55:45 1.180 *************** *** 1,4 **** ! /* $OpenBSD: mdoc_html.c,v 1.179 2018/05/25 20:23:39 schwarze Exp $ */ /* * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons * Copyright (c) 2014,2015,2016,2017,2018 Ingo Schwarze --- 1,4 ---- ! /* $OpenBSD: mdoc_html.c,v 1.180 2018/05/29 01:55:45 schwarze Exp $ */ /* * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons * Copyright (c) 2014,2015,2016,2017,2018 Ingo Schwarze *************** *** 693,699 **** print_otag(h, TAG_DT, ""); break; case ROFFT_BODY: ! print_otag(h, TAG_DD, "sw*+l", bl->norm->Bl.width); break; default: break; --- 693,699 ---- print_otag(h, TAG_DT, ""); break; case ROFFT_BODY: ! print_otag(h, TAG_DD, ""); break; default: break; *************** *** 706,720 **** (n->parent->prev == NULL || n->parent->prev->body == NULL || n->parent->prev->body->child != NULL)) { ! t = print_otag(h, TAG_DT, "sw*+-l", ! bl->norm->Bl.width); print_text(h, "\\ "); print_tagq(h, t); t = print_otag(h, TAG_DD, ""); print_text(h, "\\ "); print_tagq(h, t); } ! print_otag(h, TAG_DT, "sw*+-l", bl->norm->Bl.width); break; case ROFFT_BODY: if (n->child == NULL) { --- 706,719 ---- (n->parent->prev == NULL || n->parent->prev->body == NULL || n->parent->prev->body->child != NULL)) { ! t = print_otag(h, TAG_DT, ""); print_text(h, "\\ "); print_tagq(h, t); t = print_otag(h, TAG_DD, ""); print_text(h, "\\ "); print_tagq(h, t); } ! print_otag(h, TAG_DT, ""); break; case ROFFT_BODY: if (n->child == NULL) { *************** *** 819,826 **** case LIST_tag: if (bl->offs) print_otag(h, TAG_DIV, "cswl", "Bl-tag", bl->offs); ! print_otag(h, TAG_DL, "csw*+l", bl->comp ? ! "Bl-tag Bl-compact" : "Bl-tag", bl->width); return 1; case LIST_column: elemtype = TAG_TABLE; --- 818,825 ---- case LIST_tag: if (bl->offs) print_otag(h, TAG_DIV, "cswl", "Bl-tag", bl->offs); ! print_otag(h, TAG_DL, "c", bl->comp ? ! "Bl-tag Bl-compact" : "Bl-tag"); return 1; case LIST_column: elemtype = TAG_TABLE;