=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/man_html.c,v retrieving revision 1.28 retrieving revision 1.29 diff -c -r1.28 -r1.29 *** src/usr.bin/mandoc/man_html.c 2011/01/04 01:15:39 1.28 --- src/usr.bin/mandoc/man_html.c 2011/01/04 22:28:17 1.29 *************** *** 1,6 **** ! /* $Id: man_html.c,v 1.28 2011/01/04 01:15:39 schwarze Exp $ */ /* ! * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above --- 1,6 ---- ! /* $Id: man_html.c,v 1.29 2011/01/04 22:28:17 schwarze Exp $ */ /* ! * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above *************** *** 107,114 **** { man_ign_pre, NULL }, /* PD */ { man_ign_pre, NULL }, /* AT */ { man_in_pre, NULL }, /* in */ - { NULL, NULL }, /* TS */ - { NULL, NULL }, /* TE */ { man_ign_pre, NULL }, /* ft */ }; --- 107,112 ---- *************** *** 196,206 **** break; case (MAN_TEXT): print_text(h, n->string); - if (MANH_LITERAL & mh->fl) print_otag(h, TAG_BR, 0, NULL); - return; default: /* * Close out scope of font prior to opening a macro --- 194,205 ---- break; case (MAN_TEXT): print_text(h, n->string); if (MANH_LITERAL & mh->fl) print_otag(h, TAG_BR, 0, NULL); return; + case (MAN_TBL): + print_tbl(h, n->span); + break; default: /* * Close out scope of font prior to opening a macro *************** *** 228,234 **** case (MAN_ROOT): man_root_post(m, n, mh, h); break; ! case (MAN_TEXT): break; default: if (mans[n->tok].post) --- 227,233 ---- case (MAN_ROOT): man_root_post(m, n, mh, h); break; ! case (MAN_TBL): break; default: if (mans[n->tok].post)