[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.28 and 1.29

version 1.28, 2019/03/17 18:20:07 version 1.29, 2021/05/16 18:08:37
Line 1 
Line 1 
 /*      $OpenBSD$ */  /*      $OpenBSD$ */
 /*  /*
  * Copyright (c) 2011 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2014, 2015, 2017, 2018 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2014,2015,2017,2018,2021 Ingo Schwarze <schwarze@openbsd.org>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above   * purpose with or without fee is hereby granted, provided that the above
Line 117 
Line 117 
         const char              *hspans, *vspans, *halign, *valign;          const char              *hspans, *vspans, *halign, *valign;
         const char              *bborder, *lborder, *rborder;          const char              *bborder, *lborder, *rborder;
         char                     hbuf[4], vbuf[4];          char                     hbuf[4], vbuf[4];
           enum mandoc_esc          save_font;
         int                      i;          int                      i;
   
         if (h->tblt == NULL)          if (h->tblt == NULL)
Line 238 
Line 239 
                     "vertical-align", valign,                      "vertical-align", valign,
                     "text-align", halign,                      "text-align", halign,
                     "border-right-style", rborder);                      "border-right-style", rborder);
                 if (dp->string != NULL)                  if (dp->string != NULL) {
                           save_font = h->metac;
                           if (dp->layout->flags & TBL_CELL_BOLD)
                                   html_setfont(h, ESCAPE_FONTBOLD);
                           else if (dp->layout->flags & TBL_CELL_ITALIC)
                                   html_setfont(h, ESCAPE_FONTITALIC);
                         print_text(h, dp->string);                          print_text(h, dp->string);
                           html_setfont(h, save_font);
                   }
         }          }
   
         print_tagq(h, tt);          print_tagq(h, tt);

Legend:
Removed from v.1.28  
changed lines
  Added in v.1.29