=================================================================== RCS file: /cvs/docbook2mdoc/node.c,v retrieving revision 1.25 retrieving revision 1.28 diff -u -p -r1.25 -r1.28 --- docbook2mdoc/node.c 2019/04/28 15:32:05 1.25 +++ docbook2mdoc/node.c 2019/05/01 12:52:05 1.28 @@ -1,4 +1,4 @@ -/* $Id: node.c,v 1.25 2019/04/28 15:32:05 schwarze Exp $ */ +/* $Id: node.c,v 1.28 2019/05/01 12:52:05 schwarze Exp $ */ /* * Copyright (c) 2014 Kristaps Dzonsons * Copyright (c) 2019 Ingo Schwarze @@ -32,6 +32,7 @@ struct nodeprop { }; static const struct nodeprop properties[] = { + { "abstract", CLASS_BLOCK }, { "appendix", CLASS_BLOCK }, { "arg", CLASS_ENCL }, { "author", CLASS_LINE }, @@ -61,6 +62,7 @@ static const struct nodeprop properties[] = { { "firstterm", CLASS_LINE }, { "footnote", CLASS_BLOCK }, { "funcdef", CLASS_BLOCK }, + { "funcparams", CLASS_LINE }, { "funcprototype", CLASS_BLOCK }, { "funcsynopsis", CLASS_TRANS }, { "funcsynopsisinfo", CLASS_LINE }, @@ -148,6 +150,7 @@ static const struct nodeprop properties[] = { { "warning", CLASS_BLOCK }, { "wordasword", CLASS_TRANS }, { "xref", CLASS_LINE }, + { "year", CLASS_TRANS }, { "[UNKNOWN]", CLASS_VOID }, { "(t)", CLASS_TEXT }, { "(e)", CLASS_TEXT }