=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/html.c,v retrieving revision 1.94 retrieving revision 1.95 diff -u -r1.94 -r1.95 --- src/usr.bin/mandoc/html.c 2018/05/08 21:42:11 1.94 +++ src/usr.bin/mandoc/html.c 2018/05/09 00:45:33 1.95 @@ -1,4 +1,4 @@ -/* $OpenBSD: html.c,v 1.94 2018/05/08 21:42:11 schwarze Exp $ */ +/* $OpenBSD: html.c,v 1.95 2018/05/09 00:45:33 schwarze Exp $ */ /* * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons * Copyright (c) 2011-2015, 2017, 2018 Ingo Schwarze @@ -57,6 +57,7 @@ {"meta", HTML_NOSTACK | HTML_AUTOCLOSE | HTML_NLALL}, {"title", HTML_NLAROUND}, {"div", HTML_NLAROUND}, + {"div", 0}, {"h1", HTML_NLAROUND}, {"h2", HTML_NLAROUND}, {"span", 0}, @@ -184,6 +185,8 @@ print_text(h, "td.head-vol { text-align: center; }"); print_endline(h); print_text(h, "div.Pp { margin: 1ex 0ex; }"); + print_endline(h); + print_text(h, "div.Nd, div.Bf, div.Op { display: inline; }"); print_endline(h); print_text(h, "dl.Bl-diag "); print_byte(h, '>');