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

Diff for /mandoc/html.c between version 1.168 and 1.169

version 1.168, 2014/09/27 09:13:39 version 1.169, 2014/09/27 09:20:03
Line 87  static const char *const htmlattrs[ATTR_MAX] = {
Line 87  static const char *const htmlattrs[ATTR_MAX] = {
         "style", /* ATTR_STYLE */          "style", /* ATTR_STYLE */
         "width", /* ATTR_WIDTH */          "width", /* ATTR_WIDTH */
         "id", /* ATTR_ID */          "id", /* ATTR_ID */
         "align", /* ATTR_ALIGN */  
         "colspan", /* ATTR_COLSPAN */          "colspan", /* ATTR_COLSPAN */
         "charset", /* ATTR_CHARSET */          "charset", /* ATTR_CHARSET */
 };  };
Line 202  print_gen_head(struct html *h)
Line 201  print_gen_head(struct html *h)
          */           */
         t = print_otag(h, TAG_STYLE, 0, NULL);          t = print_otag(h, TAG_STYLE, 0, NULL);
         print_text(h, "table.head, table.foot { width: 100%; }\n"          print_text(h, "table.head, table.foot { width: 100%; }\n"
               "td.head-rtitle, td.foot-os { text-align: right; }\n");                "td.head-rtitle, td.foot-os { text-align: right; }\n"
                 "td.head-vol { text-align: center; }\n");
         print_tagq(h, t);          print_tagq(h, t);
   
         if (h->style) {          if (h->style) {

Legend:
Removed from v.1.168  
changed lines
  Added in v.1.169

CVSweb