aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libmdocml.h
diff options
context:
space:
mode:
Diffstat (limited to 'libmdocml.h')
-rw-r--r--libmdocml.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/libmdocml.h b/libmdocml.h
index 12839fb6..55ce8edb 100644
--- a/libmdocml.h
+++ b/libmdocml.h
@@ -1,4 +1,4 @@
-/* $Id: libmdocml.h,v 1.13 2008/12/09 00:27:17 kristaps Exp $ */
+/* $Id: libmdocml.h,v 1.14 2008/12/10 14:42:46 kristaps Exp $ */
/*
* Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -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 {