=================================================================== RCS file: /cvs/mandoc/mdoc_html.c,v retrieving revision 1.327 retrieving revision 1.329 diff -u -p -r1.327 -r1.329 --- mandoc/mdoc_html.c 2019/01/18 14:36:21 1.327 +++ mandoc/mdoc_html.c 2019/09/01 15:12:19 1.329 @@ -1,4 +1,4 @@ -/* $Id: mdoc_html.c,v 1.327 2019/01/18 14:36:21 schwarze Exp $ */ +/* $Id: mdoc_html.c,v 1.329 2019/09/01 15:12:19 schwarze Exp $ */ /* * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons * Copyright (c) 2014-2019 Ingo Schwarze @@ -531,8 +531,10 @@ mdoc_sh_pre(MDOC_ARGS) html_close_paragraph(h); if ((h->oflags & HTML_TOC) == 0 || h->flags & HTML_TOCDONE || - n->sec <= SEC_SYNOPSIS) + n->sec <= SEC_SYNOPSIS) { + print_otag(h, TAG_SECTION, "c", "Sh"); break; + } h->flags |= HTML_TOCDONE; sc = 0; for (sn = n->next; sn != NULL; sn = sn->next) @@ -573,6 +575,7 @@ mdoc_sh_pre(MDOC_ARGS) print_tagq(h, tsec); } print_tagq(h, t); + print_otag(h, TAG_SECTION, "c", "Sh"); break; case ROFFT_HEAD: id = html_make_id(n, 1); @@ -598,6 +601,7 @@ mdoc_ss_pre(MDOC_ARGS) switch (n->type) { case ROFFT_BLOCK: html_close_paragraph(h); + print_otag(h, TAG_SECTION, "c", "Ss"); return 1; case ROFFT_HEAD: break; @@ -1696,7 +1700,7 @@ mdoc_quote_pre(MDOC_ARGS) /* * Give up on semantic markup for now. * We cannot use TAG_SPAN because .Oo may contain blocks. - * We cannot use TAG_IDIV because we might be in a + * We cannot use TAG_DIV because we might be in a * phrasing context (like .Dl or .Pp); we cannot * close out a .Pp at this point either because * that would break the line.