[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.127 and 1.129

version 1.127, 2017/01/19 15:27:34 version 1.129, 2017/01/21 01:20:32
Line 455  man_IP_pre(MAN_ARGS)
Line 455  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, "");                  print_otag(h, TAG_DD, "c", "It-tag");
                 return 1;                  return 1;
         } else if (n->type != ROFFT_HEAD) {          } else if (n->type != ROFFT_HEAD) {
                 print_otag(h, TAG_DL, "");                  print_otag(h, TAG_DL, "c", "Bl-tag");
                 return 1;                  return 1;
         }          }
   
         /* FIXME: width specification. */          /* FIXME: width specification. */
   
         print_otag(h, TAG_DT, "");          print_otag(h, TAG_DT, "c", "It-tag");
   
         /* For IP, only print the first header element. */          /* For IP, only print the first header element. */
   
Line 517  man_OP_pre(MAN_ARGS)
Line 517  man_OP_pre(MAN_ARGS)
   
         print_text(h, "[");          print_text(h, "[");
         h->flags |= HTML_NOSPACE;          h->flags |= HTML_NOSPACE;
         tt = print_otag(h, TAG_SPAN, "c", "opt");          tt = print_otag(h, TAG_SPAN, "c", "Op");
   
         if (NULL != (n = n->child)) {          if (NULL != (n = n->child)) {
                 print_otag(h, TAG_B, "");                  print_otag(h, TAG_B, "");
Line 603  man_UR_pre(MAN_ARGS)
Line 603  man_UR_pre(MAN_ARGS)
         assert(n->type == ROFFT_HEAD);          assert(n->type == ROFFT_HEAD);
         if (n->child != NULL) {          if (n->child != NULL) {
                 assert(n->child->type == ROFFT_TEXT);                  assert(n->child->type == ROFFT_TEXT);
                 print_otag(h, TAG_A, "ch", "link-ext", n->child->string);                  print_otag(h, TAG_A, "ch", "Lk", n->child->string);
         }          }
   
         assert(n->next->type == ROFFT_BODY);          assert(n->next->type == ROFFT_BODY);

Legend:
Removed from v.1.127  
changed lines
  Added in v.1.129

CVSweb