For HTML table labels, replace label string with place holder <TABLE>
after analysis. The text is only used for the title/alt fields of
image maps and svg output and using the HTML string doesn't really help.
See bug 600.
lp->dimen.y = box.UR.y - box.LL.y;
}
lp->u.html = lbl;
+
+ /* If the label is a table, replace label text because this may
+ * be used for the title and alt fields in image maps.
+ */
+ if (lbl->kind == HTML_TBL) {
+ free (lp->text);
+ lp->text = strdup ("<TABLE>");
+ }
+
return rv;
}