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

Diff for /docbook2mdoc/parse.c between version 1.2 and 1.3

version 1.2, 2019/03/26 20:54:43 version 1.3, 2019/03/26 21:52:09
Line 47  struct element {
Line 47  struct element {
 };  };
   
 static  const struct element elements[] = {  static  const struct element elements[] = {
         { "acronym",            NODE_ACRONYM },          { "acronym",            NODE_IGNORE },
         { "affiliation",        NODE_AFFILIATION },          { "affiliation",        NODE_AFFILIATION },
         { "anchor",             NODE_ANCHOR },          { "anchor",             NODE_IGNORE },
         { "application",        NODE_APPLICATION },          { "application",        NODE_APPLICATION },
         { "arg",                NODE_ARG },          { "arg",                NODE_ARG },
         { "author",             NODE_AUTHOR },          { "author",             NODE_AUTHOR },
Line 75  static const struct element elements[] = {
Line 75  static const struct element elements[] = {
         { "envar",              NODE_ENVAR },          { "envar",              NODE_ENVAR },
         { "fieldsynopsis",      NODE_FIELDSYNOPSIS },          { "fieldsynopsis",      NODE_FIELDSYNOPSIS },
         { "filename",           NODE_FILENAME },          { "filename",           NODE_FILENAME },
         { "firstname",          NODE_FIRSTNAME },          { "firstname",          NODE_IGNORE },
         { "firstterm",          NODE_FIRSTTERM },          { "firstterm",          NODE_FIRSTTERM },
         { "footnote",           NODE_FOOTNOTE },          { "footnote",           NODE_FOOTNOTE },
         { "funcdef",            NODE_FUNCDEF },          { "funcdef",            NODE_FUNCDEF },
Line 115  static const struct element elements[] = {
Line 115  static const struct element elements[] = {
         { "option",             NODE_OPTION },          { "option",             NODE_OPTION },
         { "orderedlist",        NODE_ORDEREDLIST },          { "orderedlist",        NODE_ORDEREDLIST },
         { "orgname",            NODE_ORGNAME },          { "orgname",            NODE_ORGNAME },
         { "othername",          NODE_OTHERNAME },          { "othername",          NODE_IGNORE },
         { "para",               NODE_PARA },          { "para",               NODE_PARA },
         { "paramdef",           NODE_PARAMDEF },          { "paramdef",           NODE_PARAMDEF },
         { "parameter",          NODE_PARAMETER },          { "parameter",          NODE_PARAMETER },
         { "part",               NODE_SECTION },          { "part",               NODE_SECTION },
         { "personname",         NODE_PERSONNAME },          { "personname",         NODE_PERSONNAME },
         { "phrase",             NODE_PHRASE },          { "phrase",             NODE_IGNORE },
         { "preface",            NODE_PREFACE },          { "preface",            NODE_PREFACE },
         { "primary",            NODE_PRIMARY },          { "primary",            NODE_PRIMARY },
         { "programlisting",     NODE_PROGRAMLISTING },          { "programlisting",     NODE_PROGRAMLISTING },
Line 157  static const struct element elements[] = {
Line 157  static const struct element elements[] = {
         { "spanspec",           NODE_SPANSPEC },          { "spanspec",           NODE_SPANSPEC },
         { "structname",         NODE_STRUCTNAME },          { "structname",         NODE_STRUCTNAME },
         { "subtitle",           NODE_SUBTITLE },          { "subtitle",           NODE_SUBTITLE },
         { "surname",            NODE_SURNAME },          { "surname",            NODE_IGNORE },
         { "synopsis",           NODE_SYNOPSIS },          { "synopsis",           NODE_SYNOPSIS },
         { "table",              NODE_TABLE },          { "table",              NODE_TABLE },
         { "tbody",              NODE_TBODY },          { "tbody",              NODE_TBODY },
Line 167  static const struct element elements[] = {
Line 167  static const struct element elements[] = {
         { "thead",              NODE_THEAD },          { "thead",              NODE_THEAD },
         { "tip",                NODE_TIP },          { "tip",                NODE_TIP },
         { "title",              NODE_TITLE },          { "title",              NODE_TITLE },
         { "trademark",          NODE_TRADEMARK },          { "trademark",          NODE_IGNORE },
         { "type",               NODE_TYPE },          { "type",               NODE_TYPE },
         { "ulink",              NODE_ULINK },          { "ulink",              NODE_ULINK },
         { "userinput",          NODE_USERINPUT },          { "userinput",          NODE_USERINPUT },

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

CVSweb