=================================================================== RCS file: /cvs/mandoc/main.c,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- mandoc/main.c 2009/09/16 09:41:24 1.42 +++ mandoc/main.c 2009/09/16 22:17:27 1.43 @@ -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 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);