cksource-archive / quail-enhancement

Quail research ☠☠This repository has been deprecated ☠☠
0 stars 0 forks source link

tableWithBothHeadersUseScope #14

Open mlewand opened 9 years ago

mlewand commented 9 years ago

Techniques:

We might provide a Quick Fix in case of table with both (row and col) headers.

<table>
    <tr>
        <th>Name</th><!-- @note: optinally this might be td instead of th -->
        <th>Birth</th>
        <th>Gender</th>
    </tr>
    <tr>
        <th>Clayton</th>
        <td>2005-10-10</td>
        <td>male</td>
    </tr>
    <tr>
        <th>Carol</th>
        <td>2005-10-11</td>
        <td>female</td>
    </tr>
    <tr>
        <th>Susan</th>
        <td>2005-10-12</td>
        <td>female</td>
    </tr>
    <tr>
        <th>Oleg</th>
        <td>2005-10-13</td>
        <td>male</td>
    </tr>
    <tr>
        <th>Belnar</th>
        <td>2005-10-14</td>
        <td>male</td>
    </tr>
    <tr></tr>
</table>

Each th would gain proper scope attribute.