Contents

[edit]

Tidy: missing <...>

[edit]

Cause:

A tag is missing in a mandatory context.

[edit]

Example:

missing <tr>

Good<table>

 <td>abc</td>
</table>

Good<table>

 <tr>
  <td>abc</td>
 </tr>
</table>

[edit]

Solution:

Check in which context should the tag be defined.

[edit]

References:

Retrieved from "http://www.htmlpedia.org/wiki/Tidy_12"