[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.347 and 1.350

version 1.347, 2022/07/05 21:25:29 version 1.350, 2022/07/06 16:05:40
Line 456  mdoc_root_post(const struct roff_meta *meta, struct ht
Line 456  mdoc_root_post(const struct roff_meta *meta, struct ht
         struct tag      *t;          struct tag      *t;
   
         t = print_otag(h, TAG_DIV, "cr?", "foot", "doc-pagefooter",          t = print_otag(h, TAG_DIV, "cr?", "foot", "doc-pagefooter",
             "aria-label", "manual footer line");              "aria-label", "Manual footer line");
   
         print_otag(h, TAG_SPAN, "c", "foot-left");          print_otag(h, TAG_SPAN, "c", "foot-left");
         print_stagq(h, t);          print_stagq(h, t);
Line 489  mdoc_root_pre(const struct roff_meta *meta, struct htm
Line 489  mdoc_root_pre(const struct roff_meta *meta, struct htm
                     meta->title, meta->msec);                      meta->title, meta->msec);
   
         t = print_otag(h, TAG_DIV, "cr?", "head", "doc-pageheader",          t = print_otag(h, TAG_DIV, "cr?", "head", "doc-pageheader",
             "aria-label", "manual header line");              "aria-label", "Manual header line");
   
         print_otag(h, TAG_SPAN, "c", "head-ltitle");          print_otag(h, TAG_SPAN, "c", "head-ltitle");
         print_text(h, title);          print_text(h, title);
Line 541  mdoc_sh_pre(MDOC_ARGS)
Line 541  mdoc_sh_pre(MDOC_ARGS)
                 if (sc < 2)                  if (sc < 2)
                         break;                          break;
                 tnav = print_otag(h, TAG_NAV, "r", "doc-toc");                  tnav = print_otag(h, TAG_NAV, "r", "doc-toc");
                 t = print_otag(h, TAG_H1, "c", "Sh");                  t = print_otag(h, TAG_H2, "c", "Sh");
                 print_text(h, "TABLE OF CONTENTS");                  print_text(h, "TABLE OF CONTENTS");
                 print_tagq(h, t);                  print_tagq(h, t);
                 t = print_otag(h, TAG_UL, "c", "Bl-compact");                  t = print_otag(h, TAG_UL, "c", "Bl-compact");
Line 576  mdoc_sh_pre(MDOC_ARGS)
Line 576  mdoc_sh_pre(MDOC_ARGS)
                 print_otag(h, TAG_SECTION, "c", "Sh");                  print_otag(h, TAG_SECTION, "c", "Sh");
                 break;                  break;
         case ROFFT_HEAD:          case ROFFT_HEAD:
                 print_otag_id(h, TAG_H1, "Sh", n);                  print_otag_id(h, TAG_H2, "Sh", n);
                 break;                  break;
         case ROFFT_BODY:          case ROFFT_BODY:
                 if (n->sec == SEC_AUTHORS)                  if (n->sec == SEC_AUTHORS)
Line 597  mdoc_ss_pre(MDOC_ARGS)
Line 597  mdoc_ss_pre(MDOC_ARGS)
                 print_otag(h, TAG_SECTION, "c", "Ss");                  print_otag(h, TAG_SECTION, "c", "Ss");
                 break;                  break;
         case ROFFT_HEAD:          case ROFFT_HEAD:
                 print_otag_id(h, TAG_H2, "Ss", n);                  print_otag_id(h, TAG_H3, "Ss", n);
                 break;                  break;
         case ROFFT_BODY:          case ROFFT_BODY:
                 break;                  break;
Line 637  mdoc_nd_pre(MDOC_ARGS)
Line 637  mdoc_nd_pre(MDOC_ARGS)
                 abort();                  abort();
         }          }
         print_text(h, "\\(em");          print_text(h, "\\(em");
         print_otag(h, TAG_SPAN, "c", "Nd");          print_otag(h, TAG_SPAN, "cr", "Nd", "doc-subtitle");
         return 1;          return 1;
 }  }
   

Legend:
Removed from v.1.347  
changed lines
  Added in v.1.350

CVSweb