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

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

version 1.39, 2019/04/12 16:40:53 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 },
         { "article",            NODE_SECTION },          { "article",            NODE_SECTION },
           { "articleinfo",        NODE_BOOKINFO },
         { "book",               NODE_SECTION },          { "book",               NODE_SECTION },
         { "chapter",            NODE_SECTION },          { "chapter",            NODE_SECTION },
         { "code",               NODE_LITERAL },          { "code",               NODE_LITERAL },
Line 83  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 },
           { "keycode",            NODE_IGNORE },
           { "orgname",            NODE_IGNORE },
           { "othercredit",        NODE_AUTHOR },
         { "othername",          NODE_PERSONNAME },          { "othername",          NODE_PERSONNAME },
         { "part",               NODE_SECTION },          { "part",               NODE_SECTION },
         { "phrase",             NODE_IGNORE },          { "phrase",             NODE_IGNORE },
         { "primary",            NODE_DELETE },          { "primary",            NODE_DELETE },
           { "property",           NODE_PARAMETER },
         { "refsect1",           NODE_SECTION },          { "refsect1",           NODE_SECTION },
         { "refsect2",           NODE_SECTION },          { "refsect2",           NODE_SECTION },
         { "refsect3",           NODE_SECTION },          { "refsect3",           NODE_SECTION },
         { "refsection",         NODE_SECTION },          { "refsection",         NODE_SECTION },
           { "releaseinfo",        NODE_IGNORE },
           { "returnvalue",        NODE_IGNORE },
         { "secondary",          NODE_DELETE },          { "secondary",          NODE_DELETE },
         { "sect1",              NODE_SECTION },          { "sect1",              NODE_SECTION },
         { "sect2",              NODE_SECTION },          { "sect2",              NODE_SECTION },
Line 105  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.39  
changed lines
  Added in v.1.43

CVSweb