table-to-excel
table-to-excel copied to clipboard
Table / Row level styling
Consider allowing inheritance of attributes from parents (ie table->row->cell or table->col->cell).
So instead of:
<table>
<tr>
<th data-a-wrap="true" data-f-bold="true"> Header</th>
<th data-a-wrap="true" data-f-bold="true"> Header 2 </th>
<th data-a-wrap="true" data-f-bold="true"> Header 3</th>
</tr>
</table>
Support:
<table>
<tr data-a-wrap="true" data-f-bold="true">
<th> Header</th>
<th> Header 2</th>
<th> Header 3</th>
</tr>
</table>