diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-01-04 15:02:00 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-01-04 15:02:00 +0000 |
commit | 169a2d82c18ba1ee663ba1da329795f3e1753e8d (patch) | |
tree | 26abfc46221fcb93c3697f6ed426ea8c590cb98d /tbl_html.c | |
parent | 6f6927e6a5ffb72da4a382768a7d53d045cf5590 (diff) | |
download | mandoc-169a2d82c18ba1ee663ba1da329795f3e1753e8d.tar.gz |
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.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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); |