GUEDDES / swqp

Automatically exported from code.google.com/p/swqp
0 stars 0 forks source link

broken line in jstree for characteristic #50

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
fix from Matthew:

The little broke line is caused by unpaired td tags.
The example code below would have a little broke vertical border.

Example:

<table>
    <tr>
            <td>
            </td>
            <td>
            </td>
    </tr>
    <tr>
            <td>
            </td>
            (missing td here)
    </tr>
</table>

Possible fixes:
1,
<table>
    <tr>
            <td>
            </td>
            <td>
            </td>
    </tr>
    <tr>
            <td>
            </td>
            <td>
            </td>
     </tr>
</table>

2,
<table>
    <tr>
            <td>
            </td>
            <td>
            </td>
    </tr>
    <tr>
            <td colspan=2>
            </td>
    </tr>
</table>

Original issue reported on code.google.com by apse...@gmail.com on 22 Dec 2012 at 8:30

GoogleCodeExporter commented 8 years ago
Did this in the 4.0.1 hotfix on github. We should figure out a way of 
incorporating an HTML validator into the build process to catch issues where 
students are not providing valid HTML.

Original comment by ewpat...@gmail.com on 2 Feb 2013 at 5:47