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

Diff for /mandoc/mdoc_html.c between version 1.286 and 1.287

version 1.286, 2017/05/09 14:10:01 version 1.287, 2017/05/12 17:58:21
Line 768  mdoc_it_pre(MDOC_ARGS)
Line 768  mdoc_it_pre(MDOC_ARGS)
                             (n->parent->prev == NULL ||                              (n->parent->prev == NULL ||
                              n->parent->prev->body == NULL ||                               n->parent->prev->body == NULL ||
                              n->parent->prev->body->child != NULL)) {                               n->parent->prev->body->child != NULL)) {
                                 t = print_otag(h, TAG_DT, "csWl",                                  t = print_otag(h, TAG_DT, "csw+-l",
                                     cattr, bl->norm->Bl.width);                                      cattr, bl->norm->Bl.width);
                                 print_text(h, "\\ ");                                  print_text(h, "\\ ");
                                 print_tagq(h, t);                                  print_tagq(h, t);
Line 776  mdoc_it_pre(MDOC_ARGS)
Line 776  mdoc_it_pre(MDOC_ARGS)
                                 print_text(h, "\\ ");                                  print_text(h, "\\ ");
                                 print_tagq(h, t);                                  print_tagq(h, t);
                         }                          }
                         print_otag(h, TAG_DT, "csWl", cattr,                          print_otag(h, TAG_DT, "csw+-l", cattr,
                             bl->norm->Bl.width);                              bl->norm->Bl.width);
                         break;                          break;
                 case ROFFT_BODY:                  case ROFFT_BODY:
Line 839  mdoc_bl_pre(MDOC_ARGS)
Line 839  mdoc_bl_pre(MDOC_ARGS)
   
                 t = print_otag(h, TAG_COLGROUP, "");                  t = print_otag(h, TAG_COLGROUP, "");
                 for (i = 0; i < bl->ncols - 1; i++)                  for (i = 0; i < bl->ncols - 1; i++)
                         print_otag(h, TAG_COL, "sww", bl->cols[i]);                          print_otag(h, TAG_COL, "sw+w", bl->cols[i]);
                 print_otag(h, TAG_COL, "swW", bl->cols[i]);                  print_otag(h, TAG_COL, "swW", bl->cols[i]);
                 print_tagq(h, t);                  print_tagq(h, t);
                 return 0;                  return 0;
Line 886  mdoc_bl_pre(MDOC_ARGS)
Line 886  mdoc_bl_pre(MDOC_ARGS)
                 cattr = "Bl-tag";                  cattr = "Bl-tag";
                 if (bl->offs)                  if (bl->offs)
                         print_otag(h, TAG_DIV, "cswl", cattr, bl->offs);                          print_otag(h, TAG_DIV, "cswl", cattr, bl->offs);
                 print_otag(h, TAG_DL, "cswl", cattr, bl->width);                  print_otag(h, TAG_DL, "csw+l", cattr, bl->width);
                 return 1;                  return 1;
         case LIST_column:          case LIST_column:
                 elemtype = TAG_TABLE;                  elemtype = TAG_TABLE;

Legend:
Removed from v.1.286  
changed lines
  Added in v.1.287

CVSweb