=================================================================== RCS file: /cvs/mandoc/Attic/libmdocml.h,v retrieving revision 1.10 retrieving revision 1.12 diff -u -p -r1.10 -r1.12 --- mandoc/Attic/libmdocml.h 2008/11/30 21:41:35 1.10 +++ mandoc/Attic/libmdocml.h 2008/12/04 11:25:29 1.12 @@ -1,4 +1,4 @@ -/* $Id: libmdocml.h,v 1.10 2008/11/30 21:41:35 kristaps Exp $ */ +/* $Id: libmdocml.h,v 1.12 2008/12/04 11:25:29 kristaps Exp $ */ /* * Copyright (c) 2008 Kristaps Dzonsons * @@ -25,18 +25,20 @@ struct md_params_xml { int dummy; }; -struct md_params_html4_strict { - int dummy; +struct md_params_html { + char *css; + int flags; +#define HTML_CSS_EMBED (1 << 0) }; 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 {