summaryrefslogtreecommitdiffstatshomepage
path: root/libmdocml.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2008-12-10 14:42:45 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2008-12-10 14:42:45 +0000
commit142d3c43402e6904480a35ff0f970621b9a5f700 (patch)
treeed3f245886c31c82d7484319d9056bd43722d1f8 /libmdocml.h
parentd49b74004ed6d2134c947f8d4f978ab2c1de3a1d (diff)
downloadmandoc-142d3c43402e6904480a35ff0f970621b9a5f700.tar.gz
mandoc-142d3c43402e6904480a35ff0f970621b9a5f700.tar.zst
mandoc-142d3c43402e6904480a35ff0f970621b9a5f700.zip
Made noop the default filter.
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 {