[BACK]Return to mdoc_html.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/mdoc_html.c between version 1.327 and 1.328

version 1.327, 2019/01/18 14:36:21 version 1.328, 2019/03/01 10:57:18
Line 531  mdoc_sh_pre(MDOC_ARGS)
Line 531  mdoc_sh_pre(MDOC_ARGS)
                 html_close_paragraph(h);                  html_close_paragraph(h);
                 if ((h->oflags & HTML_TOC) == 0 ||                  if ((h->oflags & HTML_TOC) == 0 ||
                     h->flags & HTML_TOCDONE ||                      h->flags & HTML_TOCDONE ||
                     n->sec <= SEC_SYNOPSIS)                      n->sec <= SEC_SYNOPSIS) {
                           print_otag(h, TAG_SECTION, "c", "Sh");
                         break;                          break;
                   }
                 h->flags |= HTML_TOCDONE;                  h->flags |= HTML_TOCDONE;
                 sc = 0;                  sc = 0;
                 for (sn = n->next; sn != NULL; sn = sn->next)                  for (sn = n->next; sn != NULL; sn = sn->next)
Line 573  mdoc_sh_pre(MDOC_ARGS)
Line 575  mdoc_sh_pre(MDOC_ARGS)
                         print_tagq(h, tsec);                          print_tagq(h, tsec);
                 }                  }
                 print_tagq(h, t);                  print_tagq(h, t);
                   print_otag(h, TAG_SECTION, "c", "Sh");
                 break;                  break;
         case ROFFT_HEAD:          case ROFFT_HEAD:
                 id = html_make_id(n, 1);                  id = html_make_id(n, 1);
Line 598  mdoc_ss_pre(MDOC_ARGS)
Line 601  mdoc_ss_pre(MDOC_ARGS)
         switch (n->type) {          switch (n->type) {
         case ROFFT_BLOCK:          case ROFFT_BLOCK:
                 html_close_paragraph(h);                  html_close_paragraph(h);
                   print_otag(h, TAG_SECTION, "c", "Ss");
                 return 1;                  return 1;
         case ROFFT_HEAD:          case ROFFT_HEAD:
                 break;                  break;

Legend:
Removed from v.1.327  
changed lines
  Added in v.1.328

CVSweb