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

Diff for /docbook2mdoc/node.c between version 1.12 and 1.14

version 1.12, 2019/04/13 13:06:35 version 1.14, 2019/04/14 14:00:16
Line 33  struct nodeprop {
Line 33  struct nodeprop {
 static  const struct nodeprop properties[] = {  static  const struct nodeprop properties[] = {
         { "affiliation",        CLASS_TRANS },          { "affiliation",        CLASS_TRANS },
         { "appendix",           CLASS_BLOCK },          { "appendix",           CLASS_BLOCK },
         { "application",        CLASS_LINE },  
         { "arg",                CLASS_ENCL },          { "arg",                CLASS_ENCL },
         { "author",             CLASS_LINE },          { "author",             CLASS_LINE },
         { "authorgroup",        CLASS_BLOCK },          { "authorgroup",        CLASS_BLOCK },
Line 129  static const struct nodeprop properties[] = {
Line 128  static const struct nodeprop properties[] = {
         { "spanspec",           CLASS_TRANS },          { "spanspec",           CLASS_TRANS },
         { "subtitle",           CLASS_TRANS },          { "subtitle",           CLASS_TRANS },
         { "synopsis",           CLASS_BLOCK },          { "synopsis",           CLASS_BLOCK },
           { "systemitem",         CLASS_LINE },
         { "table",              CLASS_TRANS },          { "table",              CLASS_TRANS },
         { "tbody",              CLASS_TRANS },          { "tbody",              CLASS_TRANS },
         { "term",               CLASS_LINE },          { "term",               CLASS_LINE },
Line 169  static const char *const attrkeys[ATTRKEY__MAX] = {
Line 169  static const char *const attrkeys[ATTRKEY__MAX] = {
 };  };
   
 static  const char *const attrvals[ATTRVAL__MAX] = {  static  const char *const attrvals[ATTRVAL__MAX] = {
           "event",
           "ipaddress",
         "monospaced",          "monospaced",
         "norepeat",          "norepeat",
         "opt",          "opt",
         "plain",          "plain",
         "repeat",          "repeat",
         "req"          "req",
           "systemname"
 };  };
   
 enum attrkey  enum attrkey

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.14

CVSweb