[BACK]Return to libmdocml.h CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/Attic/libmdocml.h between version 1.11 and 1.14

version 1.11, 2008/12/03 14:39:59 version 1.14, 2008/12/10 14:42:46
Line 21 
Line 21 
   
 #include <sys/types.h>  #include <sys/types.h>
   
 struct  md_params_xml {  
         int              dummy;  
 };  
   
 struct  md_params_html {  struct  md_params_html {
         int              dummy;          char            *css;
           int              flags;
   #define HTML_CSS_EMBED  (1 << 0)
 };  };
   
 union   md_params {  union   md_params {
         struct md_params_xml xml;  
         struct md_params_html html;          struct md_params_html html;
 };  };
   
 enum    md_type {  enum    md_type {
         MD_XML,                 /* XML. */          MD_XML,                 /* XML. */
         MD_HTML                 /* HTML4.01-strict. */          MD_HTML,                /* HTML4.01-strict. */
           MD_NOOP                 /* Validates only. */
 };  };
   
 struct  md_args {  struct  md_args {
Line 45  struct md_args {
Line 43  struct md_args {
   
         int              warnings;          int              warnings;
 #define MD_WARN_ALL     (1 << 0)  #define MD_WARN_ALL     (1 << 0)
   #define MD_WARN_ERROR   (1 << 1)
         int              verbosity;          int              verbosity;
 };  };
   

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.14

CVSweb