aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tbl_html.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-01-04 15:02:00 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-01-04 15:02:00 +0000
commit2a7ad7cc27a054ffb9b426860d023ebc687b10c9 (patch)
tree51c4df0ecca7c1c0a288eb7ed01772cec498c44f /tbl_html.c
parentdf93d3ceecb1d865ef7249ba9348370ffc024e60 (diff)
downloadmandoc-2a7ad7cc27a054ffb9b426860d023ebc687b10c9.tar.gz
mandoc-2a7ad7cc27a054ffb9b426860d023ebc687b10c9.tar.zst
mandoc-2a7ad7cc27a054ffb9b426860d023ebc687b10c9.zip
Support `T{' and `T}' data blocks. When a standalone `T{' is
encountered as a line's last data cell, move into TBL_PART_CDATA mode whilst leaving the cell's designation as TBL_DATA_NONE. When new data arrives that's not a standalone `T}', append it to the cell contends. Close out and warn appropriately.
Diffstat (limited to 'tbl_html.c')
-rw-r--r--tbl_html.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/tbl_html.c b/tbl_html.c
index e3c710dc..2abbf4ca 100644
--- a/tbl_html.c
+++ b/tbl_html.c
@@ -1,4 +1,4 @@
-/* $Id: tbl_html.c,v 1.1 2011/01/04 10:29:41 kristaps Exp $ */
+/* $Id: tbl_html.c,v 1.2 2011/01/04 15:02:00 kristaps Exp $ */
/*
* Copyright (c) 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -63,7 +63,8 @@ print_tbl(struct html *h, const struct tbl_span *sp)
}
tt = print_otag(h, TAG_TD, 0, NULL);
if (dp) {
- print_text(h, dp->string);
+ if (dp->string)
+ print_text(h, dp->string);
dp = dp->next;
}
print_tagq(h, tt);