Contents

[edit]

Tidy: Too much <...>-elements

[edit]

Cause:

A HTML element was defined twice.

[edit]

Example:

Good

<head>
<title>title</title>
<title>another title</title>
</head>

Good

<head>
<title>title</title>
</head>

[edit]

Solution:

Erase the superfluous element.

[edit]

References:

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