=================================================================== RCS file: /cvs/mandoc/mdoc_html.c,v retrieving revision 1.143 retrieving revision 1.144 diff -u -p -r1.143 -r1.144 --- mandoc/mdoc_html.c 2011/01/12 10:43:22 1.143 +++ mandoc/mdoc_html.c 2011/01/13 14:30:13 1.144 @@ -1,4 +1,4 @@ -/* $Id: mdoc_html.c,v 1.143 2011/01/12 10:43:22 kristaps Exp $ */ +/* $Id: mdoc_html.c,v 1.144 2011/01/13 14:30:13 kristaps Exp $ */ /* * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons * @@ -420,14 +420,32 @@ print_mdoc_node(MDOC_ARGS) child = mdoc_root_pre(m, n, h); break; case (MDOC_TEXT): + /* No tables in this mode... */ + assert(NULL == h->tblt); if (' ' == *n->string && MDOC_LINE & n->flags) print_otag(h, TAG_BR, 0, NULL); print_text(h, n->string); return; case (MDOC_TBL): + /* + * This will take care of initialising all of the table + * state data for the first table, then tearing it down + * for the last one. + */ print_tbl(h, n->span); - break; + return; default: + /* + * Close out the current table, if it's open, and unset + * the "meta" table state. This will be reopened on the + * next table element. + */ + if (h->tblt) { + print_tblclose(h); + t = h->tags.head; + } + + assert(NULL == h->tblt); if (mdocs[n->tok].pre && ENDBODY_NOT == n->end) child = (*mdocs[n->tok].pre)(m, n, h); break; @@ -454,8 +472,6 @@ print_mdoc_node(MDOC_ARGS) switch (n->type) { case (MDOC_ROOT): mdoc_root_post(m, n, h); - break; - case (MDOC_TBL): break; default: if (mdocs[n->tok].post && ENDBODY_NOT == n->end)