diff options
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 21 |
1 files changed, 21 insertions, 0 deletions
@@ -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); |