The following table has a long caption that I would like to see as a single line.
That's what a browser does. But Prince breaks it into multiple lines, creating a skinny paragraph that sits above the two narrow columns. How can I avoid that?
<table id='ch05table01'>
<caption>Hash Codes Resulting from the <code>hashCode</code> Method</caption>
<thead>
<tr>
<td>
<p>String</p>
</td>
<td>
<p>Hash Code</p>
</td>
</tr>
</thead>
<tbody>
<tr>
<td>
<p><code>Hello</code></p>
</td>
<td>
<p><code>69609650</code></p>
</td>
</tr>
<tr>
<td>
<p><code>Harry</code></p>
</td>
<td>
<p><code>69496448</code></p>
</td>
</tr>
<tr>
<td>
<p><code>Hacker</code></p>
</td>
<td>
<p><code>-2141031506</code></p>
</td>
</tr>
</tbody>
</table>
That's what a browser does. But Prince breaks it into multiple lines, creating a skinny paragraph that sits above the two narrow columns. How can I avoid that?