aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/html.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2014-09-27 11:17:19 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2014-09-27 11:17:19 +0000
commitddc0156925673d09f73a05c596d3e70c0da01994 (patch)
tree93804c7d766c40738290c93681a375270e29e9fd /html.h
parentc8ca37406c0f6890f9831b16f24f54a154c4e082 (diff)
downloadmandoc-ddc0156925673d09f73a05c596d3e70c0da01994.tar.gz
mandoc-ddc0156925673d09f73a05c596d3e70c0da01994.tar.zst
mandoc-ddc0156925673d09f73a05c596d3e70c0da01994.zip
Don't pretend we have a separate XHTML and HTML mode any more.
Diffstat (limited to 'html.h')
-rw-r--r--html.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/html.h b/html.h
index 5b67eca7..6b52f077 100644
--- a/html.h
+++ b/html.h
@@ -1,4 +1,4 @@
-/* $Id: html.h,v 1.61 2014/09/27 10:56:18 kristaps Exp $ */
+/* $Id: html.h,v 1.62 2014/09/27 11:17:19 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -100,11 +100,6 @@ struct htmlpair {
#define PAIR_HREF_INIT(p, v) PAIR_INIT(p, ATTR_HREF, v)
#define PAIR_STYLE_INIT(p, h) PAIR_INIT(p, ATTR_STYLE, (h)->buf)
-enum htmltype {
- HTML_HTML_4_01_STRICT,
- HTML_XHTML_1_0_STRICT
-};
-
struct html {
int flags;
#define HTML_NOSPACE (1 << 0) /* suppress next space */
@@ -128,7 +123,6 @@ struct html {
struct tag *metaf; /* current open font scope */
enum htmlfont metal; /* last used font */
enum htmlfont metac; /* current font mode */
- enum htmltype type; /* output media type */
int oflags; /* output options */
#define HTML_FRAGMENT (1 << 0) /* don't emit HTML/HEAD/BODY */
};