diff options
| author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-01-04 10:29:41 +0000 |
|---|---|---|
| committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-01-04 10:29:41 +0000 |
| commit | e13ccc532ba5c065e0ead1d88a8e7243d296baf5 (patch) | |
| tree | d79e0cbd857fecfe80eb9dbee5ec5bf30dd3fa2c /man_html.c | |
| parent | 338031ae4701478d0057ccc08643c74da3a9eab2 (diff) | |
| download | mandoc-e13ccc532ba5c065e0ead1d88a8e7243d296baf5.tar.gz mandoc-e13ccc532ba5c065e0ead1d88a8e7243d296baf5.zip | |
Add skeleton for -T[x]html tbl stuff. Also start to put in some bits about
the up-coming version, although we're not quite there yet.
Diffstat (limited to 'man_html.c')
| -rw-r--r-- | man_html.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: man_html.c,v 1.59 2011/01/04 01:23:18 schwarze Exp $ */ +/* $Id: man_html.c,v 1.60 2011/01/04 10:29:41 kristaps Exp $ */ /* * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv> * @@ -202,7 +202,8 @@ print_man_node(MAN_ARGS) print_otag(h, TAG_BR, 0, NULL); return; case (MAN_TBL): - return; + print_tbl(h, n->span); + break; default: /* * Close out scope of font prior to opening a macro |
