So I've got this, for example:
which is obviously way too big. And indeed, the output badly overflows:
http://snag.gy/FirUF.jpg
Obviously, we need to fix the input, and that's fine. I mean, unless someone can tell us how to use CSS to wrap table cells (easy) and insert cells with ellipses on the wrapped lines (!?), but I expect that's not feasible. That's how we fix this: we make a new tr with the second half of the td elements and the first td just contains ellipses.
The problem is that we have a lot of overflows like this. Hundreds, probably.
What we'd like is a way to easily *find* all of them.
I was hoping text-overflow would help us, but it isn't triggered by these at all.
Does anyone know of a tool, whether Prince itself or something else, that will help us find places where overflow has occurred?
<div class="example-contents">
<div class="informaltable">
<table class="interlinear-gloss">
<colgroup></colgroup>
<tr class="jbo">
<td>mi</td>
<td>nelci</td>
<td>loi</td>
<td>glare</td>
<td>cidja</td>
<td>.ije</td>
<td>do</td>
<td>nelci</td>
<td>to'ebo</td>
<td>ri</td>
<td>.ije</td>
<td>la</td>
<td>djein.</td>
<td>nelci</td>
<td>no'ebo</td>
<td>ra</td>
</tr>
<tr class="gloss">
<td>I</td>
<td>like</td>
<td>part-of-the-mass-of</td>
<td>hot-type-of</td>
<td>food.</td>
<td>And</td>
<td>you</td>
<td>like</td>
<td>the-opposite-of</td>
<td>the-last-mentioned.</td>
<td>And</td>
<td>Jane</td>
<td>likes</td>
<td>the-neutral-value-of</td>
<td>something-mentioned.</td>
</tr>
<tr class="para">
<td colspan="12321">
<p class="natlang">I like hot food, and you like cold food, and Jane likes lukewarm food.</p>
</td>
</tr>
</table>
</div>
</div>
which is obviously way too big. And indeed, the output badly overflows:
http://snag.gy/FirUF.jpg
Obviously, we need to fix the input, and that's fine. I mean, unless someone can tell us how to use CSS to wrap table cells (easy) and insert cells with ellipses on the wrapped lines (!?), but I expect that's not feasible. That's how we fix this: we make a new tr with the second half of the td elements and the first td just contains ellipses.
The problem is that we have a lot of overflows like this. Hundreds, probably.
What we'd like is a way to easily *find* all of them.
I was hoping text-overflow would help us, but it isn't triggered by these at all.
Does anyone know of a tool, whether Prince itself or something else, that will help us find places where overflow has occurred?