aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libmdocml.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2008-12-03 14:39:59 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2008-12-03 14:39:59 +0000
commit268539aa79db4cc8381940023764b3d53c9d8c26 (patch)
tree13915c016d3c090a7c87e84abff011d13812da20 /libmdocml.h
parent80304ffe9bd4395bd33106a6575ab15a6d239c02 (diff)
downloadmandoc-268539aa79db4cc8381940023764b3d53c9d8c26.tar.gz
mandoc-268539aa79db4cc8381940023764b3d53c9d8c26.tar.zst
mandoc-268539aa79db4cc8381940023764b3d53c9d8c26.zip
Abstract ml/mlg/html/xml.
Diffstat (limited to 'libmdocml.h')
-rw-r--r--libmdocml.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libmdocml.h b/libmdocml.h
index 5a68c980..cbfda8e0 100644
--- a/libmdocml.h
+++ b/libmdocml.h
@@ -1,4 +1,4 @@
-/* $Id: libmdocml.h,v 1.10 2008/11/30 21:41:35 kristaps Exp $ */
+/* $Id: libmdocml.h,v 1.11 2008/12/03 14:39:59 kristaps Exp $ */
/*
* Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -25,18 +25,18 @@ struct md_params_xml {
int dummy;
};
-struct md_params_html4_strict {
+struct md_params_html {
int dummy;
};
union md_params {
struct md_params_xml xml;
- struct md_params_html4_strict html4_strict;
+ struct md_params_html html;
};
enum md_type {
MD_XML, /* XML. */
- MD_HTML4_STRICT /* HTML4.01-strict. */
+ MD_HTML /* HTML4.01-strict. */
};
struct md_args {