**I want to insert a table inside a parent table column.**
e.g :-
<table>
<tr>
<th> Type </th>
<th> Rate </th>
<th> Duration </th>
</tr>
<tr>
<td> Time <br/>
<table>
<tr>
<th> Name</th>
<th> Rate </th>
<th> Duration </th>
</tr>
<tr>
<td> Tom </td>
<td> $100 </td>
<td> 25 </td>
</tr>
<tr>
<td> Tom1 </td>
<td> $200 </td>
<td> 20 </td>
</tr>
<tr>
<td> Tom2 </td>
<td> $300 </td>
<td> 26 </td>
</tr>
</table>
</td>
<td> $1000</td>
<td> 65 </td>
</tr>
</table>
This is in html format . I want to display content in the same format in pdf using prawn.