Title pretty much explains what I want to do... I'm not a fan of using nested tables, so believe me, I'm unhappy and would so, so, so totally prefer something else... but, c'est la vie...
Essentially, I'm trying to figure out how to create a nested table utilizing the theme_table function... I can't seem to find any information on how to do that...
The markup I'm aiming to achieve ($data is the array of information that I'm building the table off of):
<table class="atb">
<tbody>
<tr class="action">
<table class="inner-atb">
<tr class="un"><td colspan="2">$data['name']</td></tr>
<tr class="data">
<td class="img">$data['image']</td>
<td class="untext">
<span class="untext-style">
<span class="untext">$data['text']</span>
<span class="separator"></span>
<span class="timestamp">$data['timestamp']</span>
</span>
</td>
</tr>
</table>
</tr>
</tbody>
</table>