[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.148 and 1.150

version 1.148, 2018/04/24 00:36:53 version 1.150, 2018/05/25 20:23:51
Line 428  man_SH_pre(MAN_ARGS)
Line 428  man_SH_pre(MAN_ARGS)
         char    *id;          char    *id;
   
         if (n->type == ROFFT_HEAD) {          if (n->type == ROFFT_HEAD) {
                 id = html_make_id(n);                  id = html_make_id(n, 1);
                 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", "permalink", id);                          print_otag(h, TAG_A, "chR", "permalink", id);
                 free(id);  
         }          }
         return 1;          return 1;
 }  }
Line 498  man_SS_pre(MAN_ARGS)
Line 497  man_SS_pre(MAN_ARGS)
         char    *id;          char    *id;
   
         if (n->type == ROFFT_HEAD) {          if (n->type == ROFFT_HEAD) {
                 id = html_make_id(n);                  id = html_make_id(n, 1);
                 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", "permalink", id);                          print_otag(h, TAG_A, "chR", "permalink", id);
                 free(id);  
         }          }
         return 1;          return 1;
 }  }
Line 525  man_IP_pre(MAN_ARGS)
Line 523  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 532  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.148  
changed lines
  Added in v.1.150

CVSweb