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

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

version 1.14, 2019/04/14 14:00:16 version 1.15, 2019/04/14 18:07:35
Line 31  struct nodeprop {
Line 31  struct nodeprop {
 };  };
   
 static  const struct nodeprop properties[] = {  static  const struct nodeprop properties[] = {
         { "affiliation",        CLASS_TRANS },  
         { "appendix",           CLASS_BLOCK },          { "appendix",           CLASS_BLOCK },
         { "arg",                CLASS_ENCL },          { "arg",                CLASS_ENCL },
         { "author",             CLASS_LINE },          { "author",             CLASS_LINE },
Line 46  static const struct nodeprop properties[] = {
Line 45  static const struct nodeprop properties[] = {
         { "command",            CLASS_LINE },          { "command",            CLASS_LINE },
         { "constant",           CLASS_LINE },          { "constant",           CLASS_LINE },
         { "contrib",            CLASS_TRANS },          { "contrib",            CLASS_TRANS },
         { "copyright",          CLASS_TRANS },          { "copyright",          CLASS_LINE },
         { "date",               CLASS_TRANS },          { "date",               CLASS_TRANS },
         { "!DOCTYPE",           CLASS_VOID },          { "!DOCTYPE",           CLASS_VOID },
         { "editor",             CLASS_LINE },          { "editor",             CLASS_LINE },
Line 67  static const struct nodeprop properties[] = {
Line 66  static const struct nodeprop properties[] = {
         { "function",           CLASS_LINE },          { "function",           CLASS_LINE },
         { "glossterm",          CLASS_LINE },          { "glossterm",          CLASS_LINE },
         { "group",              CLASS_ENCL },          { "group",              CLASS_ENCL },
         { "holder",             CLASS_TRANS },  
         { "xi:include",         CLASS_VOID },          { "xi:include",         CLASS_VOID },
         { "index",              CLASS_TRANS },          { "index",              CLASS_TRANS },
         { "info",               CLASS_TRANS },          { "info",               CLASS_TRANS },
Line 96  static const struct nodeprop properties[] = {
Line 94  static const struct nodeprop properties[] = {
         { "note",               CLASS_BLOCK },          { "note",               CLASS_BLOCK },
         { "option",             CLASS_LINE },          { "option",             CLASS_LINE },
         { "orderedlist",        CLASS_BLOCK },          { "orderedlist",        CLASS_BLOCK },
         { "orgname",            CLASS_TRANS },  
         { "para",               CLASS_BLOCK },          { "para",               CLASS_BLOCK },
         { "paramdef",           CLASS_LINE },          { "paramdef",           CLASS_LINE },
         { "parameter",          CLASS_LINE },          { "parameter",          CLASS_LINE },
Line 118  static const struct nodeprop properties[] = {
Line 115  static const struct nodeprop properties[] = {
         { "refnamediv",         CLASS_BLOCK },          { "refnamediv",         CLASS_BLOCK },
         { "refpurpose",         CLASS_LINE },          { "refpurpose",         CLASS_LINE },
         { "refsynopsisdiv",     CLASS_BLOCK },          { "refsynopsisdiv",     CLASS_BLOCK },
         { "releaseinfo",        CLASS_TRANS },  
         { "replaceable",        CLASS_LINE },          { "replaceable",        CLASS_LINE },
         { "row",                CLASS_BLOCK },          { "row",                CLASS_BLOCK },
         { "sbr",                CLASS_BLOCK },          { "sbr",                CLASS_BLOCK },
         { "screen",             CLASS_BLOCK },          { "screen",             CLASS_BLOCK },
         { "section",            CLASS_BLOCK },          { "section",            CLASS_BLOCK },
         { "simplelist",         CLASS_TRANS },          { "simplelist",         CLASS_TRANS },
           { "simplesect",         CLASS_BLOCK },
         { "spanspec",           CLASS_TRANS },          { "spanspec",           CLASS_TRANS },
         { "subtitle",           CLASS_TRANS },          { "subtitle",           CLASS_BLOCK },
         { "synopsis",           CLASS_BLOCK },          { "synopsis",           CLASS_BLOCK },
         { "systemitem",         CLASS_LINE },          { "systemitem",         CLASS_LINE },
         { "table",              CLASS_TRANS },          { "table",              CLASS_TRANS },
Line 143  static const struct nodeprop properties[] = {
Line 140  static const struct nodeprop properties[] = {
         { "varname",            CLASS_LINE },          { "varname",            CLASS_LINE },
         { "warning",            CLASS_BLOCK },          { "warning",            CLASS_BLOCK },
         { "wordasword",         CLASS_TRANS },          { "wordasword",         CLASS_TRANS },
         { "year",               CLASS_TRANS },  
         { "[UNKNOWN]",          CLASS_VOID },          { "[UNKNOWN]",          CLASS_VOID },
         { "(t)",                CLASS_TEXT },          { "(t)",                CLASS_TEXT },
         { "(e)",                CLASS_TEXT }          { "(e)",                CLASS_TEXT }

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

CVSweb