diff options
Diffstat (limited to 'libmdocml.h')
-rw-r--r-- | libmdocml.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libmdocml.h b/libmdocml.h index b7426a7d..93126e85 100644 --- a/libmdocml.h +++ b/libmdocml.h @@ -21,10 +21,6 @@ #include <sys/types.h> -struct md_params_xml { - int dummy; -}; - struct md_params_html { char *css; int flags; @@ -32,13 +28,13 @@ struct md_params_html { }; union md_params { - struct md_params_xml xml; struct md_params_html html; }; enum md_type { MD_XML, /* XML. */ - MD_HTML /* HTML4.01-strict. */ + MD_HTML, /* HTML4.01-strict. */ + MD_NOOP /* Validates only. */ }; struct md_args { |