From 2a7ad7cc27a054ffb9b426860d023ebc687b10c9 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Tue, 4 Jan 2011 15:02:00 +0000 Subject: 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. --- tbl_html.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tbl_html.c') 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 * @@ -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); -- cgit v1.2.3-56-ge451