Nice library thanks! Have you thought about implementing "rowspan" in tables? Example: ```html <table> <tr> <td>Top left</td> <td rowspan="2">Whole right</td> </tr> <tr> <td>Bottom left</td> </tr> <table> ``` I would imagine `RenderTable` gets quite a bit more complicated to handle rowspan & colspan.