From Htmlpedia
Contents |
[edit]
Tidy: discarding unexpected <...>
[edit]
Cause:
A opening or closing tag was found, but is currently not expected.
- Opening tag: the expected tag is not at this location.
- Closing tag: the tag is not opened. (This can be caused by an earlier error.)
[edit]
Example:
![]() | <b>abc</b></b> |
![]() | <b>abc</b> |
[edit]
Solution:
For a closing tag, remove the closing tag or add the missing opening tag.
[edit]
References:
- HTML specification: http://www.w3.org/TR/html4/


