From da98c7539daf0f47de95ebfe6c514b48047dcea0 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Sun, 6 Feb 2011 21:44:36 +0000 Subject: Add initial libmdoc and libman top-most machinery for accepting TBL directives. For now this will just ignore them (except for -Ttree, which just notes that an EQN's been accepted). --- mdoc_html.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'mdoc_html.c') diff --git a/mdoc_html.c b/mdoc_html.c index e07766fd..59bef0df 100644 --- a/mdoc_html.c +++ b/mdoc_html.c @@ -432,6 +432,8 @@ print_mdoc_node(MDOC_ARGS) print_otag(h, TAG_BR, 0, NULL); print_text(h, n->string); return; + case (MDOC_EQN): + return; case (MDOC_TBL): /* * This will take care of initialising all of the table -- cgit