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

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

version 1.169, 2014/09/27 09:20:03 version 1.170, 2014/09/27 09:26:01
Line 85  static const char *const htmlattrs[ATTR_MAX] = {
Line 85  static const char *const htmlattrs[ATTR_MAX] = {
         "media", /* ATTR_MEDIA */          "media", /* ATTR_MEDIA */
         "class", /* ATTR_CLASS */          "class", /* ATTR_CLASS */
         "style", /* ATTR_STYLE */          "style", /* ATTR_STYLE */
         "width", /* ATTR_WIDTH */  
         "id", /* ATTR_ID */          "id", /* ATTR_ID */
         "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");                "td.head-vol { text-align: center; }\n"
                 "table.foot td { width: 50%; }\n"
                 "table.head td { width: 33%; }\n");
         print_tagq(h, t);          print_tagq(h, t);
   
         if (h->style) {          if (h->style) {

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

CVSweb