From 6f8fe1982a3b763cad6bc6f48f3dc1c2f19281d9 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Wed, 16 Sep 2009 22:17:27 +0000 Subject: More updates to html.c. Secretly enabled -Thtml in main.c (obviously not yet documented). --- main.c | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) (limited to 'main.c') diff --git a/main.c b/main.c index f0700bcb..9a8c7f60 100644 --- a/main.c +++ b/main.c @@ -1,4 +1,4 @@ -/* $Id: main.c,v 1.42 2009/09/16 09:41:24 kristaps Exp $ */ +/* $Id: main.c,v 1.43 2009/09/16 22:17:27 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -58,6 +58,9 @@ enum intt { enum outt { OUTT_ASCII = 0, OUTT_TREE, +#if 1 + OUTT_HTML, +#endif OUTT_LINT }; @@ -85,6 +88,12 @@ struct curparse { void *outdata; }; +#if 1 +extern void *html_alloc(void); +extern void html_mdoc(void *, const struct mdoc *); +extern void html_man(void *, const struct man *); +extern void html_free(void *); +#endif extern void *ascii_alloc(void); extern void tree_mdoc(void *, const struct mdoc *); extern void tree_man(void *, const struct man *); @@ -432,6 +441,14 @@ fdesc(struct buf *blk, struct buf *ln, struct curparse *curp) if ( ! (curp->outman && curp->outmdoc)) { switch (curp->outtype) { +#if 1 + case (OUTT_HTML): + curp->outdata = html_alloc(); + curp->outman = html_man; + curp->outmdoc = html_mdoc; + curp->outfree = html_free; + break; +#endif case (OUTT_TREE): curp->outman = tree_man; curp->outmdoc = tree_mdoc; @@ -546,6 +563,10 @@ toptions(enum outt *tflags, char *arg) *tflags = OUTT_LINT; else if (0 == strcmp(arg, "tree")) *tflags = OUTT_TREE; +#if 1 + else if (0 == strcmp(arg, "html")) + *tflags = OUTT_HTML; +#endif else { warnx("bad argument: -T%s", arg); return(0); -- cgit v1.2.3-56-ge451