=================================================================== RCS file: /cvs/docbook2mdoc/parse.c,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- docbook2mdoc/parse.c 2019/04/14 14:00:16 1.42 +++ docbook2mdoc/parse.c 2019/04/14 18:07:35 1.43 @@ -1,4 +1,4 @@ -/* $Id: parse.c,v 1.42 2019/04/14 14:00:16 schwarze Exp $ */ +/* $Id: parse.c,v 1.43 2019/04/14 18:07:35 schwarze Exp $ */ /* * Copyright (c) 2014 Kristaps Dzonsons * Copyright (c) 2019 Ingo Schwarze @@ -70,6 +70,7 @@ struct alias { static const struct alias aliases[] = { { "acronym", NODE_IGNORE }, + { "affiliation", NODE_IGNORE }, { "anchor", NODE_DELETE }, { "application", NODE_COMMAND }, { "article", NODE_SECTION }, @@ -85,10 +86,12 @@ static const struct alias aliases[] = { { "glossdiv", NODE_IGNORE }, { "glossentry", NODE_VARLISTENTRY }, { "glosslist", NODE_VARIABLELIST }, + { "holder", NODE_IGNORE }, { "indexterm", NODE_DELETE }, { "informaltable", NODE_TABLE }, { "keycap", NODE_KEYSYM }, { "keycode", NODE_IGNORE }, + { "orgname", NODE_IGNORE }, { "othercredit", NODE_AUTHOR }, { "othername", NODE_PERSONNAME }, { "part", NODE_SECTION }, @@ -99,6 +102,7 @@ static const struct alias aliases[] = { { "refsect2", NODE_SECTION }, { "refsect3", NODE_SECTION }, { "refsection", NODE_SECTION }, + { "releaseinfo", NODE_IGNORE }, { "returnvalue", NODE_IGNORE }, { "secondary", NODE_DELETE }, { "sect1", NODE_SECTION }, @@ -112,6 +116,7 @@ static const struct alias aliases[] = { { "trademark", NODE_IGNORE }, { "ulink", NODE_LINK }, { "userinput", NODE_LITERAL }, + { "year", NODE_IGNORE }, { NULL, NODE_IGNORE } };