aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tbl_html.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-01-11 14:12:01 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-01-11 14:12:01 +0000
commitc55312cd12a98b785c3fcb600c21a78c6704d667 (patch)
tree3f7f805be1f9e69f5b33a685c67268c5c0b1eec4 /tbl_html.c
parent5e6fd78525e0976e02b4fe2de55f0064a648cefe (diff)
downloadmandoc-c55312cd12a98b785c3fcb600c21a78c6704d667.tar.gz
mandoc-c55312cd12a98b785c3fcb600c21a78c6704d667.tar.zst
mandoc-c55312cd12a98b785c3fcb600c21a78c6704d667.zip
Add support for "^" vertical spanners. Unlike GNU tbl, raise
error-class messages when data is being ignored by specifying it in "^" cells (either as-is or in blocks). Also note again that horizontal spanners aren't really supported...
Diffstat (limited to 'tbl_html.c')
-rw-r--r--tbl_html.c16
1 files changed, 12 insertions, 4 deletions
diff --git a/tbl_html.c b/tbl_html.c
index 7594dfc9..ebad7c77 100644
--- a/tbl_html.c
+++ b/tbl_html.c
@@ -1,4 +1,4 @@
-/* $Id: tbl_html.c,v 1.5 2011/01/06 12:31:39 kristaps Exp $ */
+/* $Id: tbl_html.c,v 1.6 2011/01/11 14:12:01 kristaps Exp $ */
/*
* Copyright (c) 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -104,10 +104,18 @@ print_tbl(struct html *h, const struct tbl_span *sp)
PAIR_STYLE_INIT(&tag, h);
tt = print_otag(h, TAG_TD, 1, &tag);
- if (dp && dp->string)
- print_text(h, dp->string);
- if (dp)
+ if (dp) {
+ switch (dp->layout->pos) {
+ case (TBL_CELL_DOWN):
+ break;
+ default:
+ if (NULL == dp->string)
+ break;
+ print_text(h, dp->string);
+ break;
+ }
dp = dp->next;
+ }
print_tagq(h, tt);
}