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

Diff for /mandoc/html.c between version 1.172 and 1.173

version 1.172, 2014/09/27 11:17:19 version 1.173, 2014/09/28 11:33:15
Line 74  static const struct htmldata htmltags[TAG_MAX] = {
Line 74  static const struct htmldata htmltags[TAG_MAX] = {
         {"code",        0 }, /* TAG_CODE */          {"code",        0 }, /* TAG_CODE */
         {"small",       0 }, /* TAG_SMALL */          {"small",       0 }, /* TAG_SMALL */
         {"style",       HTML_CLRLINE}, /* TAG_STYLE */          {"style",       HTML_CLRLINE}, /* TAG_STYLE */
           {"math",        HTML_CLRLINE}, /* TAG_MATH */
           {"mrow",        0}, /* TAG_MROW */
           {"mi",          0}, /* TAG_MI */
           {"mo",          0}, /* TAG_MO */
           {"msup",        0}, /* TAG_MSUP */
           {"msub",        0}, /* TAG_MSUB */
           {"msubsup",     0}, /* TAG_MSUBSUP */
           {"mfrac",       0}, /* TAG_MFRAC */
           {"msqrt",       0}, /* TAG_MSQRT */
           {"mfenced",     0}, /* TAG_MFENCED */
           {"mtable",      0}, /* TAG_MTABLE */
           {"mtr",         0}, /* TAG_MTR */
           {"mtd",         0}, /* TAG_MTD */
 };  };
   
 static  const char      *const htmlattrs[ATTR_MAX] = {  static  const char      *const htmlattrs[ATTR_MAX] = {
Line 87  static const char *const htmlattrs[ATTR_MAX] = {
Line 100  static const char *const htmlattrs[ATTR_MAX] = {
         "id", /* ATTR_ID */          "id", /* ATTR_ID */
         "colspan", /* ATTR_COLSPAN */          "colspan", /* ATTR_COLSPAN */
         "charset", /* ATTR_CHARSET */          "charset", /* ATTR_CHARSET */
           "open", /* ATTR_OPEN */
           "close", /* ATTR_CLOSE */
 };  };
   
 static  const char      *const roffscales[SCALE_MAX] = {  static  const char      *const roffscales[SCALE_MAX] = {

Legend:
Removed from v.1.172  
changed lines
  Added in v.1.173

CVSweb