summaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-09-16 22:17:27 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-09-16 22:17:27 +0000
commit16615cc0fed4c4eb818ce562c0cb3d225577a225 (patch)
treeb10c666097bf95ded988fa6cef20a3ab9eaf71a0 /main.c
parentfff866326138584471c95aa4b65f20e473c455a2 (diff)
downloadmandoc-16615cc0fed4c4eb818ce562c0cb3d225577a225.tar.gz
More updates to html.c.
Secretly enabled -Thtml in main.c (obviously not yet documented).
Diffstat (limited to 'main.c')
-rw-r--r--main.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/main.c b/main.c
index 07303830..d6072a6a 100644
--- a/main.c
+++ b/main.c
@@ -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);