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

Diff for /src/usr.bin/mandoc/tbl_html.c between version 1.21 and 1.22

version 1.21, 2018/11/25 19:23:59 version 1.22, 2018/11/25 21:17:30
Line 124 
Line 124 
         default:          default:
                 for (dp = sp->first; dp != NULL; dp = dp->next) {                  for (dp = sp->first; dp != NULL; dp = dp->next) {
                         print_stagq(h, tt);                          print_stagq(h, tt);
                         switch (dp->layout->pos) {  
                         case TBL_CELL_SPAN:                          /*
                         case TBL_CELL_DOWN:                           * Do not generate <td> elements for continuations
                            * of spanned cells.  Larger <td> elements covering
                            * this space were already generated earlier.
                            */
   
                           if (dp->layout->pos == TBL_CELL_SPAN ||
                               dp->layout->pos == TBL_CELL_DOWN ||
                               (dp->string != NULL &&
                                strcmp(dp->string, "\\^") == 0))
                                 continue;                                  continue;
                         default:  
                                 break;  
                         }  
   
                         /* Determine the attribute values. */                          /* Determine the attribute values. */
   

Legend:
Removed from v.1.21  
changed lines
  Added in v.1.22