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

Diff for /mandoc/html.c between version 1.164 and 1.165

version 1.164, 2014/09/27 08:54:34 version 1.165, 2014/09/27 09:02:19
Line 74  static const struct htmldata htmltags[TAG_MAX] = {
Line 74  static const struct htmldata htmltags[TAG_MAX] = {
         {"i",           0 }, /* TAG_I */          {"i",           0 }, /* TAG_I */
         {"code",        0 }, /* TAG_CODE */          {"code",        0 }, /* TAG_CODE */
         {"small",       0 }, /* TAG_SMALL */          {"small",       0 }, /* TAG_SMALL */
           {"style",       HTML_CLRLINE}, /* TAG_STYLE */
 };  };
   
 static  const char      *const htmlattrs[ATTR_MAX] = {  static  const char      *const htmlattrs[ATTR_MAX] = {
Line 193  void
Line 194  void
 print_gen_head(struct html *h)  print_gen_head(struct html *h)
 {  {
         struct htmlpair  tag[4];          struct htmlpair  tag[4];
           struct tag      *t;
   
         tag[0].key = ATTR_CHARSET;          tag[0].key = ATTR_CHARSET;
         tag[0].val = "utf-8";          tag[0].val = "utf-8";
         print_otag(h, TAG_META, 1, tag);          print_otag(h, TAG_META, 1, tag);
   
           t = print_otag(h, TAG_STYLE, 0, NULL);
           print_text(h, "table.head, table.foot { width: 100%; }\n");
           print_tagq(h, t);
   
         if (h->style) {          if (h->style) {
                 tag[0].key = ATTR_REL;                  tag[0].key = ATTR_REL;

Legend:
Removed from v.1.164  
changed lines
  Added in v.1.165

CVSweb