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

Diff for /docbook2mdoc/parse.c between version 1.42 and 1.43

version 1.42, 2019/04/14 14:00:16 version 1.43, 2019/04/14 18:07:35
Line 70  struct alias {
Line 70  struct alias {
   
 static  const struct alias aliases[] = {  static  const struct alias aliases[] = {
         { "acronym",            NODE_IGNORE },          { "acronym",            NODE_IGNORE },
           { "affiliation",        NODE_IGNORE },
         { "anchor",             NODE_DELETE },          { "anchor",             NODE_DELETE },
         { "application",        NODE_COMMAND },          { "application",        NODE_COMMAND },
         { "article",            NODE_SECTION },          { "article",            NODE_SECTION },
Line 85  static const struct alias aliases[] = {
Line 86  static const struct alias aliases[] = {
         { "glossdiv",           NODE_IGNORE },          { "glossdiv",           NODE_IGNORE },
         { "glossentry",         NODE_VARLISTENTRY },          { "glossentry",         NODE_VARLISTENTRY },
         { "glosslist",          NODE_VARIABLELIST },          { "glosslist",          NODE_VARIABLELIST },
           { "holder",             NODE_IGNORE },
         { "indexterm",          NODE_DELETE },          { "indexterm",          NODE_DELETE },
         { "informaltable",      NODE_TABLE },          { "informaltable",      NODE_TABLE },
         { "keycap",             NODE_KEYSYM },          { "keycap",             NODE_KEYSYM },
         { "keycode",            NODE_IGNORE },          { "keycode",            NODE_IGNORE },
           { "orgname",            NODE_IGNORE },
         { "othercredit",        NODE_AUTHOR },          { "othercredit",        NODE_AUTHOR },
         { "othername",          NODE_PERSONNAME },          { "othername",          NODE_PERSONNAME },
         { "part",               NODE_SECTION },          { "part",               NODE_SECTION },
Line 99  static const struct alias aliases[] = {
Line 102  static const struct alias aliases[] = {
         { "refsect2",           NODE_SECTION },          { "refsect2",           NODE_SECTION },
         { "refsect3",           NODE_SECTION },          { "refsect3",           NODE_SECTION },
         { "refsection",         NODE_SECTION },          { "refsection",         NODE_SECTION },
           { "releaseinfo",        NODE_IGNORE },
         { "returnvalue",        NODE_IGNORE },          { "returnvalue",        NODE_IGNORE },
         { "secondary",          NODE_DELETE },          { "secondary",          NODE_DELETE },
         { "sect1",              NODE_SECTION },          { "sect1",              NODE_SECTION },
Line 112  static const struct alias aliases[] = {
Line 116  static const struct alias aliases[] = {
         { "trademark",          NODE_IGNORE },          { "trademark",          NODE_IGNORE },
         { "ulink",              NODE_LINK },          { "ulink",              NODE_LINK },
         { "userinput",          NODE_LITERAL },          { "userinput",          NODE_LITERAL },
           { "year",               NODE_IGNORE },
         { NULL,                 NODE_IGNORE }          { NULL,                 NODE_IGNORE }
 };  };
   

Legend:
Removed from v.1.42  
changed lines
  Added in v.1.43

CVSweb