[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.147 and 1.149

version 1.147, 2018/04/13 16:28:07 version 1.149, 2018/05/08 21:42:34
Line 431  man_SH_pre(MAN_ARGS)
Line 431  man_SH_pre(MAN_ARGS)
                 id = html_make_id(n);                  id = html_make_id(n);
                 print_otag(h, TAG_H1, "cTi", "Sh", id);                  print_otag(h, TAG_H1, "cTi", "Sh", id);
                 if (id != NULL)                  if (id != NULL)
                         print_otag(h, TAG_A, "chR", "selflink", id);                          print_otag(h, TAG_A, "chR", "permalink", id);
                 free(id);                  free(id);
         }          }
         return 1;          return 1;
Line 501  man_SS_pre(MAN_ARGS)
Line 501  man_SS_pre(MAN_ARGS)
                 id = html_make_id(n);                  id = html_make_id(n);
                 print_otag(h, TAG_H2, "cTi", "Ss", id);                  print_otag(h, TAG_H2, "cTi", "Ss", id);
                 if (id != NULL)                  if (id != NULL)
                         print_otag(h, TAG_A, "chR", "selflink", id);                          print_otag(h, TAG_A, "chR", "permalink", id);
                 free(id);                  free(id);
         }          }
         return 1;          return 1;
Line 525  man_IP_pre(MAN_ARGS)
Line 525  man_IP_pre(MAN_ARGS)
         const struct roff_node  *nn;          const struct roff_node  *nn;
   
         if (n->type == ROFFT_BODY) {          if (n->type == ROFFT_BODY) {
                 print_otag(h, TAG_DD, "c", "It-tag");                  print_otag(h, TAG_DD, "");
                 return 1;                  return 1;
         } else if (n->type != ROFFT_HEAD) {          } else if (n->type != ROFFT_HEAD) {
                 print_otag(h, TAG_DL, "c", "Bl-tag");                  print_otag(h, TAG_DL, "c", "Bl-tag");
Line 534  man_IP_pre(MAN_ARGS)
Line 534  man_IP_pre(MAN_ARGS)
   
         /* FIXME: width specification. */          /* FIXME: width specification. */
   
         print_otag(h, TAG_DT, "c", "It-tag");          print_otag(h, TAG_DT, "");
   
         /* For IP, only print the first header element. */          /* For IP, only print the first header element. */
   

Legend:
Removed from v.1.147  
changed lines
  Added in v.1.149

CVSweb