This repository was archived by the owner on Apr 18, 2020. It is now read-only.
This repository was archived by the owner on Apr 18, 2020. It is now read-only.
Table / Row level styling #31
Open
Description
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>