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

Diff for /mandoc/man_html.c between version 1.183 and 1.184

version 1.183, 2022/07/06 14:34:59 version 1.184, 2022/07/06 16:05:40
Line 271  man_root_pre(const struct roff_meta *man, struct html 
Line 271  man_root_pre(const struct roff_meta *man, struct html 
         mandoc_asprintf(&title, "%s(%s)", man->title, man->msec);          mandoc_asprintf(&title, "%s(%s)", man->title, man->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 294  man_root_post(const struct roff_meta *man, struct html
Line 294  man_root_post(const struct roff_meta *man, struct html
         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);

Legend:
Removed from v.1.183  
changed lines
  Added in v.1.184

CVSweb