diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-01-01 12:18:37 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-01-01 12:18:37 +0000 |
commit | e544ee7c50ee6f579859cf0983518ab73f11cac1 (patch) | |
tree | 27b769c61f531ca49b70efb6715220e2249a8c35 /mdoc_html.c | |
parent | 1d3c95dfc94730fe58488b00744522e212559f61 (diff) | |
download | mandoc-e544ee7c50ee6f579859cf0983518ab73f11cac1.tar.gz |
Add table processing structures to -mdoc. This consists of an
external-facing function mdoc_addspan(), then various bits to prohibit
printing and scanning (this requires some if's to be converted into
switch's).
Diffstat (limited to 'mdoc_html.c')
-rw-r--r-- | mdoc_html.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mdoc_html.c b/mdoc_html.c index f4b7f485..bb2d0b3f 100644 --- a/mdoc_html.c +++ b/mdoc_html.c @@ -422,6 +422,8 @@ print_mdoc_node(MDOC_ARGS) case (MDOC_TEXT): print_text(h, n->string); return; + case (MDOC_TBL): + return; default: if (mdocs[n->tok].pre && ENDBODY_NOT == n->end) child = (*mdocs[n->tok].pre)(m, n, h); |