Is there any way to use widgets or the <<display>> macro in an HTML table without it breaking?
When you use table elements in a widget, and put that widget inside of a HTML table it doesn't format correctly.
Example;
<center><table>
<tr>
<th style='width: 25%;'>Skill</th>
<th style='width: 25%;'>Level</th>
<th style='width: 25%;'>EXP</th>
<th style='width: 25%;'>Next Level</th>
</tr>
<<showskills>>
</table></center>
Thats the table passage with just a <nobr> tag on it.
<<widget showskills>>
<tr>
<td>Attack</td>
<td>1</td>
<td>0/20</td>
<td>2</td>
</tr>
<</widget>>
There is the widget with <widget> & <nobr> tags.
Everything outputted by the widget ends up under the "Skill" header instead of their own respective ones.