[BACK]Return to man_html.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/man_html.c between version 1.100 and 1.101

version 1.100, 2018/04/13 16:27:14 version 1.101, 2018/04/24 00:36:04
Line 429 
Line 429 
                 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 499 
Line 499 
                 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;

Legend:
Removed from v.1.100  
changed lines
  Added in v.1.101