diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-01-29 14:39:37 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-01-29 14:39:37 +0000 |
commit | 77b2174baf5730218b8af6fdd129a1b0c3413bfc (patch) | |
tree | 773f81218b3c5c5ebf871d56ca0ec1b6c1b052f9 /html.h | |
parent | 5e60a2f452cd21556ecdfc68a6652c464873bd8c (diff) | |
download | mandoc-77b2174baf5730218b8af6fdd129a1b0c3413bfc.tar.gz |
Fixed Makefile for `make lint' dep. on config.h
Added -Txhtml for XHTML output (minimal increase to programme logic). Because groff has it and it bothers me that we don't.
Diffstat (limited to 'html.h')
-rw-r--r-- | html.h | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -28,7 +28,6 @@ enum htmltag { TAG_DIV, TAG_H1, TAG_H2, - TAG_P, TAG_SPAN, TAG_LINK, TAG_BR, @@ -40,7 +39,6 @@ enum htmltag { TAG_LI, TAG_UL, TAG_OL, - TAG_BASE, TAG_MAX }; @@ -105,6 +103,11 @@ struct htmlpair { do { (p)->key = ATTR_SUMMARY; \ (p)->val = (v); } while (/* CONSTCOND */ 0) +enum htmltype { + HTML_HTML_4_01_STRICT, + HTML_XHTML_1_0_STRICT +}; + struct html { int flags; #define HTML_NOSPACE (1 << 0) @@ -121,11 +124,12 @@ struct html { struct tag *metaf; enum htmlfont metal; enum htmlfont metac; + enum htmltype type; }; struct roffsu; -void print_gen_doctype(struct html *); +void print_gen_decls(struct html *); void print_gen_head(struct html *); struct tag *print_ofont(struct html *, enum htmlfont); struct tag *print_otag(struct html *, enum htmltag, |