=================================================================== RCS file: /cvs/docbook2mdoc/statistics.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- docbook2mdoc/statistics.c 2019/04/03 12:29:47 1.6 +++ docbook2mdoc/statistics.c 2019/04/03 14:02:07 1.7 @@ -1,4 +1,4 @@ -/* $Id: statistics.c,v 1.6 2019/04/03 12:29:47 schwarze Exp $ */ +/* $Id: statistics.c,v 1.7 2019/04/03 14:02:07 schwarze Exp $ */ /* * Copyright (c) 2019 Ingo Schwarze * @@ -351,6 +351,9 @@ main(int argc, char *argv[]) table_add("chapter", "title"); table_add("entry", NULL); table_add("informaltable", "tgroup"); + table_add("itemizedlist", "listitem"); + table_add("listitem", NULL); + table_add("orderedlist", "listitem"); table_add("para", NULL); table_add("refsect1", "title"); table_add("refsect2", "title"); @@ -363,11 +366,15 @@ main(int argc, char *argv[]) table_add("table", "tgroup"); table_add("table", "title"); table_add("tbody", "row"); + table_add("term", NULL); table_add("tgroup", "colspec"); table_add("tgroup", "tbody"); table_add("tgroup", "thead"); table_add("thead", "row"); table_add("title", "TEXT"); + table_add("variablelist", "varlistentry"); + table_add("varlistentry", "listitem"); + table_add("varlistentry", "term"); } table_add(NULL, NULL);