[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.307 and 1.309

version 1.307, 2018/06/25 13:45:57 version 1.309, 2018/06/25 16:54:59
Line 719  mdoc_it_pre(MDOC_ARGS)
Line 719  mdoc_it_pre(MDOC_ARGS)
                         break;                          break;
                 case ROFFT_BODY:                  case ROFFT_BODY:
                         if (n->child == NULL) {                          if (n->child == NULL) {
                                 print_otag(h, TAG_DD, "ss?",                                  print_otag(h, TAG_DD, "s", "width", "auto");
                                     "width", "auto");  
                                 print_text(h, "\\ ");                                  print_text(h, "\\ ");
                         } else                          } else
                                 print_otag(h, TAG_DD, "");                                  print_otag(h, TAG_DD, "");
Line 1175  mdoc_fn_pre(MDOC_ARGS)
Line 1174  mdoc_fn_pre(MDOC_ARGS)
   
         for (n = n->child->next; n; n = n->next) {          for (n = n->child->next; n; n = n->next) {
                 if (NODE_SYNPRETTY & n->flags)                  if (NODE_SYNPRETTY & n->flags)
                         t = print_otag(h, TAG_VAR, "cTss?", "Fa",                          t = print_otag(h, TAG_VAR, "cTs", "Fa",
                             "white-space", "nowrap");                              "white-space", "nowrap");
                 else                  else
                         t = print_otag(h, TAG_VAR, "cT", "Fa");                          t = print_otag(h, TAG_VAR, "cT", "Fa");
Line 1416  mdoc_bf_pre(MDOC_ARGS)
Line 1415  mdoc_bf_pre(MDOC_ARGS)
                 cattr = "Bf No";                  cattr = "Bf No";
   
         /* Cannot use TAG_SPAN because it may contain blocks. */          /* Cannot use TAG_SPAN because it may contain blocks. */
         print_otag(h, TAG_DIV, "cshl", cattr, 1);          print_otag(h, TAG_DIV, "c", cattr);
         return 1;          return 1;
 }  }
   

Legend:
Removed from v.1.307  
changed lines
  Added in v.1.309

CVSweb