diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2008-12-10 14:42:45 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2008-12-10 14:42:45 +0000 |
commit | 350d36572cedb93c55d10aff73c3a7bb54fef52e (patch) | |
tree | 81bb8cb1742c69702386bd5200230a907f67f318 /libmdocml.h | |
parent | e4c3f51da30c67c5fb30b0b90af2f55a8631af37 (diff) | |
download | mandoc-350d36572cedb93c55d10aff73c3a7bb54fef52e.tar.gz |
Made noop the default filter.
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 { |