summaryrefslogtreecommitdiffstats
path: root/libmdocml.h
diff options
context:
space:
mode:
Diffstat (limited to 'libmdocml.h')
-rw-r--r--libmdocml.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libmdocml.h b/libmdocml.h
index 74174e5f..098b7026 100644
--- a/libmdocml.h
+++ b/libmdocml.h
@@ -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 {